-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (30 loc) · 1.11 KB
/
setup.py
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
"""Define PyPI package."""
import setuptools
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name='json_home_client',
version='0.0.0', # version will get replaced by git version tag - do not edit
author='Peter Linss',
author_email='pypi@linss.com',
description='Client for REST APIs using JSON Home pages per https://tools.ietf.org/html/draft-nottingham-json-home-06',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/plinss/json_home_client/',
packages=['json_home_client'],
package_data={'json_home_client': ['py.typed']},
install_requires=[
'uri_template',
],
extras_require={
'dev': ['mypy',
'flake8', 'flake8-import-order', 'flake8-annotations', 'flake8-type-annotations', 'flake8-docstrings',
'pep8-naming'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)