-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (44 loc) · 1.52 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
__version__ = '0.3'
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
NOTES = open(os.path.join(here, 'NOTES.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
USAGE = open(os.path.join(here, 'src', 'dobbin', 'README.txt')).read()
version = sys.version_info[:3]
install_requires = [
"transaction",
]
setup(
name="dobbin",
version=__version__,
description="Transactional object database, implemented in pure Python.",
long_description="\n\n".join((README, NOTES, USAGE, CHANGES)),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Topic :: Database",
"Operating System :: POSIX",
],
keywords="object database persistence",
author="Malthe Borch",
author_email="[email protected]",
install_requires=install_requires,
license='BSD',
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=False,
test_suite="dobbin.tests",
tests_require = install_requires,
)