-
Notifications
You must be signed in to change notification settings - Fork 98
/
pyproject.toml
61 lines (56 loc) · 1.59 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
[project]
name = "pyzotero"
dynamic = ["version", "readme"]
description = "Python wrapper for the Zotero API"
requires-python = ">=3.8"
dependencies = [
"feedparser >= 6.0.11",
"pytz",
"requests >= 2.21.0",
"bibtexparser"
]
authors = [{ name = "Stephan Hügel", email = "[email protected]" }]
license = {file = "LICENSE.md"}
keywords = ["Zotero", "DH"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: Blue Oak Model License (BlueOak-1.0.0)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/urschrei/pyzotero"
Tracker = "https://github.com/urschrei/pyzotero/issues"
[project.optional-dependencies]
test = [
"pytest >= 7.4.2",
"httpretty",
"python-dateutil"
]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 45",
"setuptools-scm[toml] >= 6.2",
]
[tool.pytest.ini_options]
minversion = "6.2.2"
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests",
]
[tool.setuptools_scm]
write_to = "src/_version.py"