-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 963 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0", "pytest"]
build-backend = "setuptools.build_meta"
[tools.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = [""]
[project]
name = "q100bench"
version = "0.1"
authors = [
{ name="Nancy F. Hansen", email="[email protected]" },
]
description = "A package for comparing a test genome to the diploid Q100 benchmark"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
'pysam >= 0.20',
'pybedtools >= 0.9',
'pytest >= 7.4.3',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
[project.scripts]
q100bench = "q100bench.bench:main"
gethets = "q100bench.gethets:main"
readbench = "q100bench.readbench:main"
[project.urls]
"Homepage" = "https://github.com/nhansen/q100bench"
"Bug Tracker" = "https://github.com/nhansen/q100bench/issues"