-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
99 lines (86 loc) · 2.01 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
[project]
name = "cladetime"
version = "0.2.0"
description = "Assign clades to viral genome sequences at a point in time."
authors = [
{name = "Evan Ray", email="[email protected]"},
{name = "Ben Rogers", email = "[email protected]"},
{name = "Becky Sweger", email = "[email protected]"},
]
requires-python = ">=3.11"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"awscli>=1.32.92",
"biopython",
"boto3",
"click",
"cloudpathlib",
"docker",
"pandas",
"polars>=1.0.0",
"pyarrow",
"requests>=2.32.0",
"rich",
"rich-click",
"structlog",
"urllib3",
"us",
]
[project.optional-dependencies]
dev = [
"boto3-stubs[s3]",
"coverage",
"freezegun",
"moto",
"mypy",
"pytest",
"pytest-mock",
"ruff",
"types-python-dateutil",
"types-requests",
]
docs = [
"furo",
"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"
[project.entry-points."console_scripts"]
assign_clades = "cladetime.assign_clades:main"
clade_list = "cladetime.get_clade_list:main"
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[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"]
[tools.setuptools]
packages = ["cladetime"]
[tool.mypy]
ignore_missing_imports = true