forked from deep-compute/kwikapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 1.28 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
from setuptools import setup, find_packages
version = '0.4.3'
setup(
name="kwikapi",
version=version,
packages=find_packages("."),
package_dir={'kwikapi': 'kwikapi'},
include_package_data=True,
license='MIT License',
description='Quickly build API services to expose functionality in Python.',
url='https://github.com/deep-compute/kwikapi',
download_url="https://github.com/deep-compute/kwikapi/tarball/%s" % version,
author='Deep Compute, LLC',
author_email='[email protected]',
install_requires=[
'msgpack-python==0.5.1',
'deeputil==0.2.5',
'numpy==1.14.2',
'future==0.16.0',
'requests==2.18.4',
],
extras_require={
'django': ['kwikapi-django==0.2.3'],
'tornado': ['kwikapi-tornado==0.3'],
'all': ['kwikapi-django==0.2.3', 'kwikapi-tornado==0.3']
},
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',
],
)