forked from biocommons/uta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (82 loc) · 2.1 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
84
85
86
87
88
89
90
91
[project]
name = "uta"
dynamic = ["version"]
description = "Universal Transcript Archive"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
keywords = [
"bioinformatics",
"computational biology",
"genome variants",
"genome variation",
"genomic variants",
"genomic variation",
"genomics",
"hgvs",
]
authors = [
{name = "UTA Contributors", email = "[email protected]" }
]
maintainers = [
{name = "UTA Contributors", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"alembic",
"attrs",
"biocommons.seqrepo",
"biopython>=1.69",
"bioutils",
"colorlog",
"configparser",
"docopt",
"eutils>=0.3.2",
"importlib_resources",
"more_itertools",
"nose",
"prettytable",
"psycopg2-binary",
"pytz",
"recordtype",
"retry",
"sqlalchemy",
"uta-align>=0.3",
]
[project.optional-dependencies]
test = [
"coverage",
"parameterized",
"testing.postgresql",
]
[project.urls] # Optional
"Homepage" = "https://github.com/biocommons/uta"
"Bug Reports" = "https://github.com/biocommons/uta/issues"
"Source" = "https://github.com/biocommons/uta"
[project.scripts]
uta = "uta.cli:main"
# This is configuration specific to the `setuptools` build backend.
# If you are using a different build backend, you will need to change this.
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
package-data = {"sample" = ["*.dat"]}
[build-system]
requires = [
"setuptools>=43.0.0",
"setuptools_scm==1.11.1",
"wheel"
]
build-backend = "setuptools.build_meta"