forked from raphael-group/hatchet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (66 loc) · 1.56 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
[build-system]
requires = ["setuptools>=61.0", "cmake>=2.8"]
build-backend = "setuptools.build_meta"
[project]
name = "hatchet"
version = "1.1.2"
authors = [
{ name="Simone Zaccaria", email="s.zaccaria@ucl.ac.uk" },
{ name="Ben Raphael", email="braphael@cs.princeton.edu" },
{ name="Matt Myers", email="mm63@cs.princeton.edu" },
{ name="Brian Arnold", email="brianjohnarnold@gmail.com" },
{ name="Vineet Bansal", email="vineetb@princeton.edu" }
]
description = "A package to infer allele and clone-specific copy-number aberrations (CNAs)."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"biopython",
"hmmlearn",
"matplotlib",
"pandas",
"psutil",
"pyomo",
"pysam",
"requests",
"seaborn",
"scikit-learn",
"scipy"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest>=6",
"pytest-cov",
"mock",
"coverage",
"numpydoc",
"sphinx",
"sphinxcontrib-bibtex<2.0.0",
"sphinx-rtd-theme",
"recommonmark",
"sphinx-markdown-tables",
]
[project.scripts]
hatchet = "hatchet.__main__:main"
[project.urls]
"Homepage" = "https://github.com/raphael-group/hatchet"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
include = ["hatchet*"]
[tool.setuptools.package-data]
hatchet = ["hatchet.ini"]
"hatchet.data" = ["*"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA"
testpaths = [
"tests"
]