-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
48 lines (44 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="django-rest-framework-client",
version="0.11.2",
description="Python client for a DjangoRestFramework based web site",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/dkarchmer/django-rest-framework-client",
author="David Karchmer",
author_email="[email protected]",
license="MIT",
packages=[
"drf_client",
"drf_client.helpers",
],
install_requires=[
"requests",
],
python_requires=">=3.10,<4",
keywords=[
"django",
"djangorestframework",
"drf",
"rest-client",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
zip_safe=False,
)