-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.71 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "genomics-data-index"
version = "0.10.0.dev0"
authors = [
{ name="Aaron Petkau", email="[email protected]" },
]
description = "Indexes genomics data (nucleotide variants, kmers, MLST) for fast querying of features."
readme = "README.md"
# I need to restrict to less then 3.10 now due to this issue in ete3
# https://github.com/etetoolkit/ete/issues/635
# This stems from issues in PyQt5
requires-python = ">=3.8,<3.10"
dependencies = [
'biopython>=1.70',
'pandas>=1.0.0',
'numpy',
'scikit-bio',
# Need to restrict scipy due to this issue in scikit-bio (https://github.com/biocore/scikit-bio/issues/1818)
'scipy<1.9',
'vcfpy',
'sqlalchemy',
'pymysql',
'requests',
# ete3 requires PyQt5 for some functionality <https://github.com/etetoolkit/ete/issues/354>
'ete3',
'PyQt5',
'biocommons.seqrepo',
'click',
'click-config-file',
'coloredlogs',
'pyyaml',
'pyroaring',
'sourmash',
'pybedtools',
'snakemake',
'Jinja2',
'pathvalidate',
'pytest',
'zipp',
'packaging'
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux"
]
[project.scripts]
gdi = "genomics_data_index.cli.gdi:main"
[project.urls]
"Homepage" = "https://github.com/apetkau/genomics-data-index"
"Bug Tracker" = "https://github.com/apetkau/genomics-data-index/issues"