-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
60 lines (55 loc) · 1.67 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
requires = [
'DateTime>=2.11',
'Plone',
'setuptools',
'SQLAlchemy',
'z3c.saconfig',
'zope.sqlalchemy',
'Products.PlonePAS>=5.0.1',
]
tests_requires = requires + ['pysqlite', ]
setup(
name='pas.plugins.sqlalchemy',
version='0.5.dev0',
description="Plone SQLAlchemy-based PAS user/group/prop store.",
long_description=read("README.rst") + '\n\n' + read("CHANGES.rst"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Zope2",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"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]",
url='https://github.com/collective/pas.plugins.sqlalchemy',
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,
extras_require={
'test': tests_requires,
},
tests_require=tests_requires,
test_suite="pas.plugins.sqlalchemy",
entry_points="""
# -*- entry_points -*-
[z3c.autoinclude.plugin]
target = plone
"""
)