-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 1.09 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
from setuptools import setup, find_packages
# https://docs.djangoproject.com/en/1.11/intro/reusable-apps/
version = "0.3.8"
setup(
name="kwikapi-tornado",
version=version,
packages=["kwikapi.tornado"],
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.tornado",
download_url="https://github.com/deep-compute/kwikapi.tornado/tarball/%s" % version,
author="Deep Compute, LLC",
author_email="[email protected]",
install_requires=["tornado==5.0.2", "deeputil==0.2.9", "requests==2.20.0"],
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",
],
)