-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (63 loc) · 1.91 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
# -*- coding: utf-8 -*-
# Copyright (c) 2008-2013 Infrae. All rights reserved.
# See also LICENSE.txt
from setuptools import setup, find_packages
import os
version = '3.0.5dev'
tests_require = [
'Products.Silva [test]',
]
setup(name='silva.pas.base',
version=version,
description="Authentication support for Silva CMS",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Framework :: Zope2",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
keywords='pas silva',
author='Sylvain Viollon',
author_email='[email protected]',
url='https://github.com/silvacms/silva.pas.base',
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['silva', 'silva.pas'],
include_package_data=True,
zip_safe=False,
install_requires=[
"Products.GenericSetup > 1.5.0",
"Products.PluggableAuthService >= 1.7.0",
"Products.Silva",
"five.grok",
"infrae.wsgi",
"grokcore.chameleon",
"setuptools",
"silva.core.cache",
"silva.core.conf",
"silva.core.interfaces",
"silva.core.layout",
"silva.core.services",
"silva.core.smi",
"silva.core.views",
"silva.translations",
"silva.ui",
"zeam.form.silva",
"zope.cachedescriptors",
"zope.component",
"zope.datetime",
"zope.interface",
"zope.publisher",
"zope.schema",
"zope.session",
],
entry_points = """
[zodbupdate]
renames = silva.pas.base:CLASS_CHANGES
""",
tests_require = tests_require,
extras_require = {'test': tests_require},
)