-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
83 lines (79 loc) · 1.98 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
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
[metadata]
name = draftable-compare-api
version = file: VERSION
description = Client library for the Draftable document comparison API
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/draftable/compare-api-python-client
author = Draftable
author_email = [email protected]
maintainer = Draftable
maintainer_email = [email protected]
license = MIT
license_files =
LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries
keywords =
draftable
api
compare
comparison
comparisons
pdf
word
document
documents
doc
docx
powerpoint
presentation
presentations
ppt
pptx
project_urls =
Changelog = https://github.com/draftable/compare-api-python-client/blob/stable/CHANGELOG.md
Documentation = https://github.com/draftable/compare-api-python-client/blob/stable/README.md
Source = https://github.com/draftable/compare-api-python-client
Tracker = https://github.com/draftable/compare-api-python-client/issues
[options]
zip_safe = True
packages = find:
python_requires = >=3.7, <4
setup_requires =
setuptools >= 40.8.0
install_requires =
importlib_metadata ; python_version < "3.8"
requests
[options.entry_points]
console_scripts =
dr-compare = draftable.commands.dr_compare:dr_compare_main
[options.extras_require]
dev =
black >= 21.12b0
check-manifest
coverage
flake8
isort
mypy
pylint
pytest
pytest-cov
tox >= 3.3.0
twine
types-requests
wheel
[options.packages.find]
include =
draftable
draftable.*