forked from sbrunner/c2c.sqlalchemy.rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (44 loc) · 1.28 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
48
49
50
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
install_requires = [
'pyramid',
'sqlalchemy',
'geoalchemy',
'shapely==1.2.17' #set fix version to avoid conflicts,
]
tests_require = [
'nosexcover',
'nose-progressive',
'ipdbplugin',
'unittest2',
]
setup(
name='c2c.sqlalchemy.rest',
version='0.2',
description='Add a REST interface to simple SQLAlchemy object',
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Framework :: Buildout :: Recipe',
'Topic :: System :: Installation/Setup',
],
author='Stéphane Brunner',
author_email='stephane.brunner@camptocamp.com',
url='http://github.com/sbrunner/c2c.sqlalchemy.rest',
license='BSD',
keywords='sqlalchemy rest',
packages=find_packages(exclude=["*.tests", "*.tests.*"]),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
entry_points={
}
)