-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
24 lines (23 loc) · 804 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
from setuptools import setup, find_packages
setup(
name="django-sliver",
version="0.1.1",
description="Lightweight REST API built on top of Django generic views",
long_description="Lightweight REST API built on top of Django generic views",
keywords="django, api, rest",
author="Jared Morse",
author_email="[email protected]",
url="https://github.com/jarcoal/django-sliver",
license="BSD",
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
install_requires=['django >= 1.11', 'six'],
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
)