forked from collective/pas.plugins.sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.31 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
import os
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
requires = [
'setuptools',
'SQLAlchemy',
'z3c.saconfig',
'zope.sqlalchemy',
'DateTime>=2.11',
]
tests_requires = requires + ['pysqlite']
setup(name='pas.plugins.sqlalchemy',
version='0.3',
description="SQLAlchemy-based PAS user/group/prop store.",
long_description=read("README.txt") + '\n\n' + read("CHANGES.txt"),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Malthe Borch and Stefan Eletzhofer',
author_email="[email protected]",
license="GNU GPL v2",
keywords='web pas plone',
package_dir = {'': 'src'},
packages=find_packages("src"),
include_package_data=True,
namespace_packages=['pas', 'pas.plugins'],
zip_safe=False,
install_requires=requires,
tests_require=tests_requires,
test_suite="pas.plugins.sqlalchemy",
)