forked from genialis/RNAnorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (87 loc) · 2 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
[build-system]
requires = [
"setuptools >= 64.0.0",
"setuptools_scm >= 6.4.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "rnanorm"
description = "Common RNA-seq normalization methods"
authors = [
{name = "Genialis, Inc."},
{email = "[email protected]"},
]
dynamic = ["version"]
readme = "README.rst"
license = {text = "Proprietary"}
requires-python = ">=3.8, <3.12"
keywords = [
"bio",
"bioinformatics",
"data science",
"machine learning",
"artificial intelligence",
"python",
"genialis",
"rnaseq",
"normalization",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"click",
"numpy >= 1.0.0",
"pandas >= 1.0.0",
"scikit-learn >= 1.0.0",
"pandera",
]
[project.optional-dependencies]
docs = [
"sphinx>=5.1.1",
"sphinx-autodoc-typehints>=1.19.2",
]
package = [
"build>=0.8.0",
"check-manifest>=0.48",
"twine>=4.0.1", # Required by tox -e packaging
]
test = [
"black",
"flake8",
"isort",
"mypy",
"pydocstyle[toml]",
"pytest",
"pytest-cov",
]
[project.urls]
repository = "https://github.com/genialis/RNAnorm"
[project.scripts]
rnanorm = "rnanorm.cli:main"
[tool.setuptools_scm]
[tool.black]
target-version = ["py38", "py39", "py310", "py311"]
line-length = 99
[tool.isort]
profile = "black"
[tool.pydocstyle]
add-select = "D404"
add-ignore = "D202"
[tool.mypy]
ignore_missing_imports = true
strict = true
pretty = true
no_warn_return_any = true
disallow_subclassing_any = false