-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 959 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
30
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="mywsgi",
version="1.0.3",
author="Matt Robenolt",
author_email="[email protected]",
url="https://github.com/mattrobenolt/mywsgi",
description="Opinionated uWSGI setup",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["mywsgi"],
zip_safe=False,
license="MIT",
include_package_data=True,
entry_points={"console_scripts": ["mywsgi = mywsgi:cli"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
],
)