-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.11 KB
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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "PyClone-VI"
version = "0.2.0"
description="A fast method for inferring clonal population structure."
authors = [
{name = "Andrew Roth", email = "aroth@bccrc.ca"}
]
maintainers = [
{name = "Emilia Hurtado", email = "ehurtado@bccrc.ca"},
{name = "Andrew Roth", email = "aroth@bccrc.ca"}
]
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E.*"]
requires-python = ">=3.12"
dependencies = [
"numba>=0.61.2",
"numpy>=2.0",
"scipy",
"click>=8.3",
"pandas>=2.2.2",
"h5py>=3.0",
"threadpoolctl>=3.6.0"
]
classifiers = [
"Private :: Do Not Upload",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Repository = "https://github.com/Roth-Lab/pyclone-vi.git"
Homepage = "https://github.com/Roth-Lab/pyclone-vi"
DOI = "https://doi.org/10.1186/s12859-020-03919-2"
[project.scripts]
pyclone-vi = "pyclone_vi.cli:main"
[tool.black]
line-length = 120
[tool.setuptools.packages.find]
exclude = ["*.tests*", "*examples*"]