-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (79 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
89 lines (79 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=60", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pySEQTarget"
version = "0.13.1"
description = "Sequentially Nested Target Trial Emulation"
readme = "README.md"
license = {text = "MIT"}
keywords = ["causal inference", "sequential trial emulation", "target trial", "observational studies"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
authors = [
{name = "Ryan O'Dea", email = "ryan.odea@psi.ch"},
{name = "Alejandro Szmulewicz", email = "aszmulewicz@hsph.harvard.edu"},
{name = "Tom Palmer", email = "tom.palmer@bristol.ac.uk"},
{name = "Miguel Hernán", email = "mhernan@hsph.harvard.edu"},
]
maintainers = [
{name = "Ryan O'Dea", email = "ryan.odea@psi.ch"},
{name = "Tom Palmer", email = "remlapmot@hotmail.com"},
]
dependencies = [
"numpy",
"polars",
"tqdm",
"statsmodels",
"matplotlib",
"pyarrow",
"lifelines",
"joblib"
]
[project.optional-dependencies]
output = [
"markdown",
"weasyprint",
"tabulate"
]
[project.urls]
Homepage = "https://github.com/CausalInference/pySEQTarget"
Repository = "https://github.com/CausalInference/pySEQTarget"
"Bug Tracker" = "https://github.com/CausalInference/pySEQTarget/issues"
"Ryan O'Dea (ORCID)" = "https://orcid.org/0009-0000-0103-9546"
"Alejandro Szmulewicz (ORCID)" = "https://orcid.org/0000-0002-2664-802X"
"Tom Palmer (ORCID)" = "https://orcid.org/0000-0003-4655-4511"
"Miguel Hernán (ORCID)" = "https://orcid.org/0000-0003-1619-8456"
"University of Bristol (ROR)" = "https://ror.org/0524sp257"
"Harvard University (ROR)" = "https://ror.org/03vek6s52"
[dependency-groups]
dev = [
"black",
"isort",
"pytest",
"myst-parser",
"piccolo_theme",
"sphinx",
"sphinx-copybutton",
"sphinx-autodoc-typehints",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pySEQTarget*"]
[tool.setuptools.package-data]
SEQdata = ["data/*.csv"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
filterwarnings = [
"ignore:FigureCanvasAgg is non-interactive:UserWarning",
]