-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 686 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name="json-api-smart",
version="0.0.5",
packages=["src"],
url="https://github.com/NilssonPL/json-api-smart",
license="MIT",
author="Nilsson",
author_email="peter.laudel@gmail.com",
description="Is your client library which support ths JSON:API standard.",
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
install_requires=["requests", "inflect", "typeguard"],
extras_require={"dev": ["pytest", "requests_mock", "coverage", "mypy"]},
keywords="json:api api json rest resources",
)