-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 999 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
from setuptools import find_packages, setup
from distutils.core import setup
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="tornado-async-transformer",
version="0.2.0",
description="libcst transformer and codemod for updating tornado @gen.coroutine syntax to python3.5+ native async/await",
url="https://github.com/zhammer/tornado-async-transformer",
packages=find_packages(exclude=["tests", "demo_site"]),
package_data={"tornado_async_transformer": ["py.typed"]},
install_requires=["libcst == 0.2.4"],
author="Zach Hammer",
author_email="zachary_hammer@alumni.brown.edu",
license="MIT License",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)