-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
63 lines (55 loc) · 1.38 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ncbi-acc-download"
authors = [{ name = "Kai Blin", email = "[email protected]" }]
description = "Download genome files from NCBI by accession."
readme = "README.md"
dependencies = ["requests"]
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.optional-dependencies]
recursive = ["biopython >= 1.79"]
validate = ["biopython >= 1.79"]
testing = [
"pytest",
"coverage",
"pytest-cov",
"requests-mock",
"pytest-mock",
"flake8",
"ruff",
]
[project.scripts]
ncbi-acc-download = "ncbi_acc_download.__main__:main"
nad = "ncbi_acc_download.__main__:main"
[project.urls]
Homepage = "https://github.com/kblin/ncbi-acc-download"
Issues = "https://github.com/kblin/ncbi-acc-download/issues"
[tool.setuptools]
packages = ["ncbi_acc_download"]
[tool.setuptools.dynamic]
version = { attr = "ncbi_acc_download.__version__" }
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# # pyupgrade # don't enable this yet
#"UP",
# flake8-bugbear
"B",
]