-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
98 lines (86 loc) · 2.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "habanero/__init__.py"
[project]
name = "habanero"
dynamic = ["version"]
description = "Low Level Client for Crossref Search API"
maintainers = [
{name = "Scott Chamberlain", email = "[email protected]"}
]
readme = "README.rst"
license = {file = "LICENSE.md"}
requires-python = ">=3.12"
dependencies = [
"bibtexparser==2.0.0b7",
"httpx>=0.27.2",
"packaging>=24.1",
"pyyaml>=6.0.2",
"tqdm>=4.66.5",
"urllib3==2.2.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/sckott/habanero"
Documentation = "https://habanero.readthedocs.io/"
Repository = "https://github.com/sckott/habanero"
"Bug Tracker" = "https://github.com/sckott/habanero/issues"
Changelog = "https://github.com/sckott/habanero/blob/main/Changelog.rst"
[tool.setuptools.dynamic]
version = {attr = "habanero.__version__"}
[tool.ruff]
line-length = 88
exclude = [
"build",
"dist"
]
lint.ignore = [
"D102",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403"]
"habanero/request_class.py" = ["E722"]
"test/*" = ["E501"]
"habanero/*" = ["E501"]
[tool.uv]
dev-dependencies = [
"docutils>=0.21.2",
"ruff>=0.6.8",
"sphinx>=8.0.2",
"sphinx-autodoc-typehints>=2.4.4",
"sphinxcontrib-issuetracker>=0.11",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"codecov>=2.1.13",
"vcrpy>=5.1.0",
"pytest-recording",
"sphinx-rtd-theme==3.0.0rc3",
]
[tool.uv.sources]
pytest-recording = { git = "https://github.com/kiwicom/pytest-recording", rev = "128d134c77837d9f4eccbc0f2c08f50882af7e6a" }
# from https://github.com/pypa/setuptools/discussions/3627
[project.optional-dependencies]
bibtex = [
"bibtexparser==2.0.0b7",
]
test = [
"pytest",
]
[tool.setuptools.packages.find]
exclude = ["docs*", "test*"]