-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[project]
name = "geofetch"
version = "0.12.11"
description = "Downloads data and metadata from GEO and SRA and creates standard PEPs."
readme = "README.md"
license = "BSD-2-Clause"
requires-python = ">=3.10"
authors = [
{ name = "Oleksandr Khoroshevskyi" },
{ name = "Nathan Sheffield" },
{ name = "Vince Reuter" },
{ name = "Nathan LeRoy" },
]
keywords = ["project", "bioinformatics", "sequencing", "ngs", "workflow"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"colorama>=0.3.9",
"logmuse>=0.3.0",
"ubiquerg>=0.6.2",
"requests>=2.28.1",
"xmltodict>=0.13.0",
"pandas>=1.5.3",
"peppy>=0.40.6",
"rich>=12.5.1",
"coloredlogs>=15.0.1",
"piper>=0.14.4",
]
[project.urls]
Homepage = "https://github.com/pepkit/geofetch/"
[project.scripts]
geofetch = "geofetch.__main__:main"
sraconvert = "geofetch.sraconvert:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["geofetch/**"]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.pytest.ini_options]
addopts = "-rfE"
testpaths = ["tests"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["F403", "F405", "E501"]
[tool.ruff.lint.isort]
known-first-party = ["geofetch"]