-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (52 loc) · 1.65 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
[tool.poetry]
name = "clarite"
version = "2.3.6"
description = "CLeaning to Analysis: Reproducibility-based Interface for Traits and Exposures"
authors = ["Andre Rico <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/HallLab/clarite-python/"
documentation = "https://clarite-python.readthedocs.io/en/latest/"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[tool.poetry.dependencies]
python = ">=3.8.0,<3.11.0"
click = ">7"
pandas = "^1.3"
scipy = "^1.9"
seaborn = ">0.9"
statsmodels = "^0.13"
matplotlib = "^3.4.2"
numpy = "^1.24"
rpy2 = "^3.4.5"
tzlocal = "^2.1"
sphinx = {version = "^3.2.1", optional = true}
numpydoc = {version = "^1.1.0", optional = true}
sphinx_rtd_theme = {version = "^0.5.0", optional = true}
sphinx-copybutton = {version = "^0.3.0", optional = true}
ipython = {version = "^7.18.1", optional = true}
sphinx-click = {version = "^4", optional = true}
importlib-metadata = "^5.2.0"
pandas-genomics = "^0.12"
[tool.poetry.dev-dependencies]
codecov = "^2.1.11"
coverage = "^5.5"
flake8 = "^3.9.2"
pytest = ">=4.6"
pytest-cov = "^2.12.1"
pytest-xdist = "^2.3.0"
black = ">=22"
[tool.poetry.extras]
docs = ["sphinx", "numpydoc", "sphinx_rtd_theme", "sphinx-copybutton", "ipython", "sphinx-click"]
[tool.poetry.scripts]
clarite-cli = 'clarite.cli:entry_point'
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"