forked from vertical-knowledge/ripozo-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from setuptools import setup, find_packages
version = '1.0.3.dev0'
setup(
name='ripozo-sqlalchemy',
version=version,
packages=find_packages(include=['ripozo_sqlalchemy', 'ripozo_sqlalchemy.*']),
url='https://github.com/vertical-knowledge/ripozo-sqlalchemy',
license='',
author='Tim Martin',
author_email='[email protected]',
description=('Integrates SQLAlchemy with ripozo to'
' easily create sqlalchemy backed Hypermedia/HATEOAS/REST apis'),
install_requires=[
'ripozo',
'SQLAlchemy>=0.9.1'
],
tests_require=[
'unittest2',
'tox',
'mock',
'pylint'
],
test_suite="ripozo_sqlalchemy_tests",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)