-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.32 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.32 KB
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
37
38
#!/usr/bin/python
# -*- encoding: utf-8 -*-
"""
"""
__author__ = 'Martin Martimeo <martin@martimeo.de>'
__date__ = '29.04.13 - 15:34'
from setuptools import setup
from tornado_restless import __version__
setup(
name='Tornado-Restless',
version=__version__,
author='Martin Martimeo',
author_email='martin@martimeo.de',
url='https://github.com/tornado-utils/tornado-restless',
packages=['tornado_restless'],
license='GNU AGPLv3+ or BSD-3-clause',
platforms='any',
description='flask-restless adopted for tornado',
long_description=open('README.md').read(),
install_requires=open('requirements.txt').readlines(),
test_suite='nose.collector',
tests_require=open('requirements-test.txt').readlines(),
download_url='https://github.com/tornado-utils/tornado-restless/tarball/%s' % __version__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)