-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
83 lines (74 loc) · 1.84 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
[build-system]
requires = ["setuptools>=61.0", "cmake>=2.8"]
build-backend = "setuptools.build_meta"
[project]
name = "hatchet"
version = "2.1.0"
authors = [
{ name="Simone Zaccaria", email="[email protected]" },
{ name="Ben Raphael", email="[email protected]" },
{ name="Matt Myers", email="[email protected]" },
{ name="Brian Arnold", email="[email protected]" },
{ name="Vineet Bansal", email="[email protected]" },
{ name="Metin Balaban", email="[email protected]" }
]
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 = [
"pybedtools",
"biopython",
"hmmlearn",
"matplotlib",
"numpy<2",
"pandas",
"psutil",
"pyomo",
"pysam",
"requests",
"seaborn",
"scikit-learn",
"scipy",
"statsmodels"
]
[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"
]
[tool.ruff.lint]
# E731: Too many uses of lambdas throughout the codebase currently
# E741: We're using variable names that are too short ('l' etc).
ignore = ["E731", "E741"]