-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1.15 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
version = "0.2.8"
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",
long_description=long_description,
long_description_content_type="text/markdown",
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==2.2.24", "kwikapi==0.2.8"],
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",
],
)