-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 861 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
32
33
from setuptools import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open('README.rst').read()
version = '0.1'
install_requires = [
'tornado>=2.2',
]
setup(name='tornado_recaptcha',
version=version,
description="Client for talking to ReCaptcha using Tornado's " \
"async HTTPClient",
long_description=README,
author='Chris Schomaker',
author_email='',
url='https://github.com/cshoe/tornado-recaptcha',
license=open('LICENSE').read(),
packages=['tornado_recaptcha'],
include_package_data=True,
install_requires=install_requires,
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
)
)