forked from nothink/RumAlchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.13 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
46
47
from setuptools import setup, find_packages
import sys, os
version = '0.4'
tests_require = [
'nose',
'tw.rum',
'BeautifulSoup',
'WebTest',
]
if sys.version_info[:2] == (2, 4):
tests_require.append("pysqlite")
setup(name='RumAlchemy',
version=version,
description="RESTful web interface generator for SQLAlchemy mapped classes using rum and ToscaWidgets",
long_description="""\
""",
classifiers=[],
keywords='toscawidgets sqlalchemy rum',
author='Alberto Valverde Gonzalez, Michael Brickenstein',
author_email='[email protected]',
url='http://python-rum.org/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
test_suite = "nose.collector",
zip_safe=False,
install_requires=[
'rum >= 0.3dev-20090708',
'SQLAlchemy >= 0.6.6',
'zope.sqlalchemy',
'limoncello'
],
tests_require = tests_require,
entry_points="""
[rum.repositoryfactory]
sqlalchemy = rumalchemy:SARepositoryFactory
[console_scripts]
rumalchemy = rumalchemy.command:rumalchemy
""",
)