forked from ernestofgonzalez/django-dynamic-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 971 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
30
from setuptools import find_packages, setup
NAME = "django-dynamic-rest"
DESCRIPTION = "Dynamic API support to Django REST Framework."
URL = "https://github.com/hunchat/django-dynamic-rest"
VERSION = "2.1.0"
SCRIPTS = ["manage.py"]
setup(
description=DESCRIPTION,
include_package_data=True,
install_requires=open("install_requires.txt").readlines(),
long_description=open("README.rst").read(),
name=NAME,
packages=find_packages(),
scripts=SCRIPTS,
url=URL,
version=VERSION,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)