-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 849 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
import setuptools
with open("README.rst", "r") as fin:
long_description = fin.read()
setuptools.setup(
name="dizzydecor",
version="0.0.4",
author="Tyler Nullmeier",
author_email="[email protected]",
description="Web service decorators for tornado",
python_requires='>=3',
license="MIT",
keywords="tornado webservice web service oriented SOA decorator",
url="https://github.com/TylerZeroMaster/dizzydecor",
packages=setuptools.find_packages(),
long_description=long_description,
long_description_content_type="text/x-rst",
install_requires=["tornado"],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
],
)