-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.17 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.17 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
#!/usr/bin/python
# -*- encoding: utf-8 -*-
"""
"""
__author__ = 'Martin Martimeo <martin@martimeo.de>'
__date__ = '30.01.14 - 13:44'
from distutils.core import setup
setup(
name='Tornado-Backbone',
version='0.2.2',
author='Martin Martimeo',
author_email='martin@martimeo.de',
url='https://github.com/MartinMartimeo/tornado-backbone',
packages=['tornado_backbone'],
license='GNU AGPLv3+',
platforms='any',
description='backbone models from sqlalchemy orm for tornado-restless',
long_description=open('README.md').read(),
install_requires=open('requirements.txt').readlines(),
download_url='http://pypi.python.org/pypi/Tornado-Backbone',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: JavaScript',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)