-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (39 loc) · 1.08 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "scarap"
version = "1.0.0"
authors = [
{ name = "Stijn Wittouck", email = "[email protected]" }
]
maintainers = [
{ name = "Stijn Wittouck", email = "[email protected]" },
{ name = "Tim Van Rillaer", email = "[email protected]" }
]
description = "A toolkit for prokaryotic comparative genomics"
readme = "README.md"
requires-python = ">=3.6.7,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dependencies = [
"wheel",
"biopython>=1.67",
"ete3>=3.1.1",
"numpy>=1.16.5",
"scipy>=1.4.1",
"pandas"
]
[project.urls]
Homepage = "https://github.com/SWittouck/SCARAP"
Issues = "https://github.com/SWittouck/SCARAP/issues"
[project.scripts]
scarap = "scarap.__main__:main"
[tools.setuptools.packages.find]
where = "src"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = "src"