-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
116 lines (102 loc) · 2.63 KB
/
pyproject.toml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[project]
name = "cladetime"
dynamic = ["version"]
description = "Assign clades to SARS-CoV-2 genome sequences at a point in time."
authors = [
{name = "Reich Lab @ University of Massachusetts", email = "[email protected]"},
]
maintainers = [
{name = "Becky Sweger", email = "[email protected]"},
{name = "Evan Ray", email="[email protected]"},
{name = "Ben Rogers", email = "[email protected]"},
]
license = {text = "MIT License"}
keywords = ["biostatistics", "clade", "covid", "epidemiology", "genome", "sequence"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.11"
readme = "README.md"
dependencies = [
"awscli>=1.32.92",
"biopython",
"boto3",
"cloudpathlib",
"docker",
"pandas",
"polars>=1.17.1",
"pyarrow",
"requests>=2.32.0",
"rich",
"structlog",
"tqdm",
"urllib3",
"us",
"zstandard",
]
[project.optional-dependencies]
dev = [
"boto3-stubs[s3]",
"coverage",
"freezegun",
"jinja2>3.1.4",
"moto",
"mypy",
"pytest",
"pytest-mock",
"ruff",
"types-python-dateutil",
"types-requests",
]
docs = [
"furo",
"jinja2>3.1.4",
"matplotlib",
"myst-parser",
"sphinx>=5.0,<6.0",
"sphinx-autobuild",
"sphinx-copybutton",
"sphinx-github-style",
"sphinxext-opengraph",
"sphinx_toolbox",
]
[project.urls]
Repository = "https://github.com/reichlab/cladetime.git"
Documentation = "https://cladetime.readthedocs.io/"
Issues = "https://github.com/reichlab/cladetime/issues"
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.pytest.ini_options]
tmp_path_retention_policy = "none"
filterwarnings = [
"ignore::cladetime.exceptions.CladeTimeDateWarning",
"ignore::DeprecationWarning",
'ignore:polars found a filename',
]
testpaths = [
"tests",
]
[tool.ruff]
line-length = 120
lint.extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
# Ignore import formatting rules in `__init__.py`
"__init__.py" = ["I001"]
[tool.mypy]
ignore_missing_imports = false
[tool.uv]
# ensure setuptools_scm generates a version number that reflects latest tags
# https://docs.astral.sh/uv/concepts/cache/#dynamic-metadata
cache-keys = [{ git = { commit = true, tags = true } }]