-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (38 loc) · 1.3 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.5.15"
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.9",
"numpy==1.15.1",
"future==0.16.0",
"requests>=2.18.4",
],
extras_require={
"django": ["kwikapi-django==0.2.6"],
"tornado": ["kwikapi-tornado==0.3.8"],
"all": ["kwikapi-django==0.2.6", "kwikapi-tornado==0.3.7"],
},
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",
],
)