-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (44 loc) · 1.39 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
__version__ = '1.4'
import os
from setuptools import setup, find_packages
requires = [
'setuptools',
'perfmetrics',
'psycopg2',
'repoze.catalog',
'transaction',
'ZODB3',
'zope.index',
]
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
setup(
name='repoze.pgtextindex',
version=__version__,
description="Text index for repoze.catalog based on PostgreSQL 8.4+",
long_description=README + '\n\n' + CHANGES,
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Framework :: ZODB",
"License :: Repoze Public License",
"Topic :: Database",
],
keywords='repoze catalog ZODB PostgreSQL text index',
author='Shane Hathaway',
author_email='[email protected]',
url='http://pypi.python.org/pypi/repoze.pgtextindex',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(),
include_package_data=True,
namespace_packages=['repoze'],
zip_safe=False,
install_requires=requires,
tests_require=requires + ['nose'],
test_suite="nose.collector",
entry_points = """
""",
)