forked from deep-compute/kwikapi.django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1017 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
version = '0.2.2'
setup(
name="kwikapi-django",
version=version,
packages=['kwikapi.django'],
include_package_data=True,
license='MIT License', # example license
description='Quickest way to build powerful HTTP APIs in Python',
url='https://github.com/deep-compute/kwikapi.django',
download_url="https://github.com/deep-compute/kwikapi.django/tarball/%s" % version,
author='Deep Compute, LLC',
author_email='[email protected]',
install_requires=[
'django==1.11',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)