forked from urschrei/pyzotero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
58 lines (54 loc) · 1.41 KB
/
setup.cfg
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
[metadata]
name = pyzotero
version = attr: pyzotero.version.__version__
description = Python wrapper for the Zotero API
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/urschrei/pyzotero
author = Stephan Hügel
author_email = [email protected]
license = MIT
license_files = license.txt
keywords = zotero
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Education
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/urschrei/pyzotero
Tracker = https://github.com/urschrei/pyzotero/issues
[options]
zip_safe = False
packages = find:
platforms = any
include_package_data = True
install_requires =
feedparser >= 6
pytz
requests >= 2.21.0
bibtexparser
python_requires = >=3.7
setup_requires =
setuptools_scm
tests_require =
pytest >= 6.2.2
httpretty
python-dateutil
test_suite = test
[bdist_wheel]
universal = 0
[options.extras_require]
test =
pytest >= 6.2.2
all =
%(test)s
[flake8]
ignore = E501,E203,W503