-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
105 lines (94 loc) · 1.74 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel", "toml"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = "true"
[tool.setuptools_scm]
[project]
name = "proxbias"
authors = [
{ name = "Recursion Pharmaceuticals", email = "[email protected]" },
]
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["proxbias"]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"efaar-benchmarking >= 0.1.0",
"fastparquet",
"importlib_resources",
"infercnvpy",
"numpy",
"pandas",
"pyarrow",
"s3fs",
"s3fs",
"scanpy",
"scikit-image",
"scikit-learn",
"scipy",
"seaborn",
"statsmodels",
"tqdm",
"wget",
]
[project.optional-dependencies]
dev = [
"bandit",
"black[jupyter]",
"coverage",
"flake8",
"ipython; python_version > '3.8'",
"ipython<8.13.0; python_version <= '3.8'",
"isort",
"mypy",
"pip-tools",
"pre-commit",
"pytest",
"pytest-cov",
"pyupgrade",
"radon",
"types-pkg_resources",
"tox",
"validate-pyproject[all]",
]
[tool.pytest.ini_options]
addopts = [
"--ignore",
"setup.py",
"--ignore",
"run_test.py",
"--tb",
"native",
"--strict-markers",
"--durations=20",
"--cov-report",
"term-missing",
"--cov=proxbias",
]
testpaths = ["tests"]
env = ["PYTHONHASHSEED=0"]
[tool.mypy]
files = "proxbias"
python_version = "3.9"
ignore_missing_imports = true
show_error_codes = true
# strict = true
allow_untyped_calls = true
plugins = "numpy.typing.mypy_plugin"
[tool.isort]
profile = "black"
py_version = "auto"
line_length = 120
[tool.bandit]
exclude = "tests"
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.setuptools]
packages = ["proxbias"]