-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
75 lines (52 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
__version__ = '3.1b1'
from setuptools import setup, Extension, find_packages
import sys, os
import textwrap
setup(
name="SchevoZodb",
version=__version__,
description="ZODB3 storage backend for Schevo",
long_description=textwrap.dedent("""
SchevoZodb provides integration between the ZODB3_ object database
for Python and the Schevo_ DBMS.
You can also get the `latest development version
<http://getschevo.org/hg/repos.cgi/schevozodb-dev/archive/tip.tar.gz#egg=SchevoZodb-dev>`__.
.. _Schevo: http://schevo.org/
.. _ZODB3: http://www.zope.org/Products/ZODB3
"""),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
keywords='database dbms',
author='ElevenCraft Inc.',
author_email='[email protected]',
url='http://www.schevo.org/',
license='MIT',
platforms=['UNIX', 'Windows'],
packages=find_packages(exclude=['doc', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'ZODB3 >= 3.8.0',
],
tests_require=[
'nose >= 0.11.0',
'Schevo == dev, >= 3.1b1dev-20090507',
],
test_suite='nose.collector',
extras_require={
},
dependency_links = [
],
entry_points = """
[schevo.backend]
zodb = schevozodb.backend:ZodbBackend
""",
)