-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
54 lines (48 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pysradb"
dynamic = ["version"]
description = "A Python package for interacting with SRAdb and downloading datasets from SRA/ENA/GEO"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{ name = "Saket Choudhary", email = "saketkc@gmail.com" },
]
keywords = [
"pysradb",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"lxml>=4.6.3",
"pandas>=1.3.2",
"requests-ftp>=0.3.1",
"requests>=2.26.0",
"tqdm>=4.62.1",
"xmltodict>=0.12.0",
]
[project.scripts]
pysradb = "pysradb.cli:parse_args"
[project.urls]
Homepage = "https://saket-choudhary.me/pysradb"
[tool.distutils.bdist_wheel]
universal = true
[tool.hatch.version]
path = "pysradb/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/pysradb",
]