-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.08 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
[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 = "GQC"
version = "1.1.0"
authors = [
{ name="Nancy F. Hansen", email="nhansen@mail.nih.gov" },
]
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]
GQC = "GQC.bench:main"
assemblybench = "GQC.bench:main"
gethets = "GQC.gethets:main"
mononucs = "GQC.mononucs:main"
readbench = "GQC.readbench:main"
assemblycompare = "GQC.compare:main"
bamdiscrepancies = "GQC.bamdiscrepancies:main"
multiplot = "GQC.multiplot:main"
[project.urls]
"Homepage" = "https://github.com/nhansen/GQC"
"Bug Tracker" = "https://github.com/nhansen/GQC/issues"