-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.33 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
from setuptools import setup, find_packages
import os
version = '1.0+crom'
install_requires = [
'setuptools',
'SQLAlchemy',
'transaction >= 1.2',
'zope.interface',
'zope.sqlalchemy >= 0.7',
]
tests_require = [
]
setup(name='cromlech.sqlalchemy',
version=version,
description="Cromlech Web Framework utility methods and components " +
"for applications based on SQLAlchemy.",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("src", 'cromlech', 'sqlalchemy',
"test_api.txt")).read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python",
],
keywords='SQLAlchemy ORM Cromlech',
author='Dolmen Team',
author_email='[email protected]',
url='http://gitweb.dolmen-project.org',
license='ZPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['cromlech', ],
include_package_data=True,
zip_safe=False,
tests_require=tests_require,
install_requires=install_requires,
extras_require={'test': tests_require},
entry_points="""
# -*- Entry points: -*-
""",
)