-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.14 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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
import sys
sys.path.insert(0, 'src')
from pydo import __version__ as version
description='a Python ORM supporting many RDBMS backends'
long_description="""
PyDO is a ORM (Object-Relational Mapper) database access library for
Python that facilitates writing a Python database access layer. PyDO
attempts to be simple, flexible, extensible, and unconstraining.
""".strip()
platforms="OS Independent"
keywords=['ORM',
'database',
'SkunkWeb']
classifiers=[x for x in (line.strip() for line in open('CLASSIFIERS')) \
if x and not x.startswith('#')]
setup(author='Drew Csillag',
author_email='[email protected]',
maintainer='Jacob Smullyan',
maintainer_email='[email protected]',
description=description,
long_description=long_description,
classifiers=classifiers,
keywords=keywords,
platforms=platforms,
license='GPL/BSD',
name='PyDO',
url='http://skunkweb.org/pydo2.html',
version=version,
zip_safe=True,
packages=['pydo', 'pydo.drivers'],
package_dir={'' : 'src'})