-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathsetup.cfg
More file actions
81 lines (75 loc) · 1.8 KB
/
Copy pathsetup.cfg
File metadata and controls
81 lines (75 loc) · 1.8 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
77
78
79
80
81
[metadata]
name = internetarchive
version = attr: internetarchive.__version__.__version__
description = A Python interface to archive.org.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/jjjake/internetarchive
author = Jacob M. Johnson
author_email = jake@archive.org
license = AGPL-3.0
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
packages =
internetarchive
internetarchive.cli
install_requires =
jsonpatch>=0.4
requests>=2.25.0,<3.0.0
tqdm>=4.0.0
urllib3>=1.26.0
python_requires = >=3.10
include_package_data = True
zip_safe = False
[options.entry_points]
console_scripts =
ia = internetarchive.cli.ia:main
[options.extras_require]
all =
%(dev)s
%(test)s
%(types)s
dev =
mypy
pre-commit
pytest
setuptools
twine
docs =
alabaster==1.0.0
sphinx==8.1.3
sphinx-autodoc-typehints==3.0.0
typing-extensions
test =
pytest==9.0.3
responses==0.26.1
ruff==0.14.1
types =
tqdm-stubs>=0.2.0
types-colorama
types-jsonpatch>=0.1.0a0
types-pygments
types-requests>=2.25.0,<3.0.0
types-setuptools
types-ujson>=4.2.0
types-urllib3>=1.26.0
[options.package_data]
* = py.typed
[codespell]
ignore-words-list = alers
[mypy]
exclude = ^\.git/|^__pycache__/|^docs/source/conf.py$|^old/|^build/|^dist/|\.tox
python_version = 3.10
pretty = True
scripts_are_modules = True
show_error_codes = True
show_error_context = True