-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (65 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
76 lines (65 loc) · 1.88 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
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "uniprot-id-mapper"
dynamic = ["version"]
description = "A Python wrapper for the UniProt Mapping RESTful API."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["uniprot", "database", "protein ID", "gene ID", "parser"]
authors = [{ name = "David Araripe", email = "david@araripe.nl" }]
maintainers = [{ name = "David Araripe", email = "david@araripe.nl" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
]
dependencies = ["requests", "pandas", "numpy", "tqdm"]
[project.optional-dependencies]
dev = ["ruff", "isort", "black"]
[project.urls]
homepage = "https://github.com/David-Araripe/UniProtMapper"
repository = "https://github.com/David-Araripe/UniProtMapper"
# documentation = "https://readthedocs.org" TODO
[tool.setuptools]
include-package-data = true
[project.scripts]
protmap = "UniProtMapper.cli:main"
[tool.setuptools.dynamic]
version = {attr = "UniProtMapper.__version__"}
[tool.setuptools_scm]
write_to = "src/UniProtMapper/_version.py"
[tool.ruff]
line-length = 88
target-version = "py39"
fix = true
ignore = ['E501'] # sometimes it goes longer on the docstrings...
[tool.isort]
profile = "black"
[tool.black]
target-version = ['py39']
exclude = '''
(
asv_bench/env
| \.egg
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| setup.py
)
'''