-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 930 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
31
from setuptools import setup
setup(
name="torethink",
version="1.3.4",
packages=["torethink"],
url="https://github.com/mehmetkose/torethink",
license="MIT",
author="Mehmet Kose",
author_email="mehmet@linux.com",
description="Rethinkdb Wrapper For Tornado Framework",
platforms=("Any"),
keywords="tornado rethinkdb layer".split(),
install_requires=[
"tornado>=4.4",
"rethinkdb>=2.3",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Utilities",
],
)