-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (48 loc) · 1.66 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
51
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = read('src/megrok/rdb/README.txt') + '\n' +\
read('CHANGES.txt')
setup(name='megrok.rdb',
version = '0.12',
description="SQLAlchemy based RDB support for Grok.",
long_description=long_description,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Zope3',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Database',
],
keywords='rdb relational sqlalchemy grok database',
author='Grok Team',
author_email='[email protected]',
license='ZPL',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['megrok'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.interface',
'zope.schema',
'zope.component',
'zope.event',
'zope.location',
'grokcore.component',
'zope.container',
'martian',
'SQLAlchemy > 0.5beta2',
'zope.sqlalchemy',
'z3c.saconfig >= 0.9',
],
entry_points="""
# -*- Entry points: -*-
""",
)