-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.23 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
33
34
35
36
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tornado-jsonrpc2",
version="0.5.dev",
author="Niko Wenselowski",
author_email="[email protected]",
description="JSON-RPC request handler for Tornado.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="tornado jsonrpc jsonrpc2 rpc json requesthandler",
url="https://github.com/okin/tornado-jsonrpc2",
project_urls={
"Source": "https://github.com/okin/tornado-jsonrpc2",
},
packages=setuptools.find_packages(exclude=["examples", "tests"]),
python_requires='>=3.6',
install_requires=['tornado>=5.0'],
extras_require={
'test': ['pytest-tornado>=0.7'],
},
tests_require=['pytest-tornado>=0.7'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
)