-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
29 lines (28 loc) · 930 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="jsonapi_client",
version='0.9.9',
description="Comprehensive, yet easy-to-use, pythonic, ORM-like access to JSON API services",
long_description=(open("README.rst").read() + "\n" +
open("CHANGES.rst").read()),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
],
author="Tuomas Airaksinen",
author_email="[email protected]",
url="https://github.com/qvantel/jsonapi-client",
keywords="JSONAPI JSON API client",
license="BSD-3",
package_dir={"": "src"},
packages=find_packages("src"),
include_package_data=True,
zip_safe=False,
install_requires=[
"requests",
"jsonschema",
"aiohttp",
],
)