-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.63 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
# -*- coding: utf-8 -*-
# Copyright (c) 2011-2013 Infrae. All rights reserved.
# See also LICENSE.txt
from setuptools import setup, find_packages
import os
version = '1.3dev'
tests_require = [
'infrae.wsgi [test]',
'infrae.testbrowser',
]
setup(name='silva.fanstatic',
version=version,
description="Integration of fanstatic in Silva CMS",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Zope2",
],
keywords='zope2 fanstatic silva',
author='Sylvain Viollon',
author_email='info@infrae.com',
url='https://github.com/silvacms/silva.fanstatic',
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['silva'],
include_package_data=True,
zip_safe=False,
install_requires=[
'fanstatic > 0.11',
'five.grok',
'martian',
'silva.core.conf',
'silva.core.views',
'zope.component',
'zope.interface',
'zope.publisher',
'zope.traversing',
'zope.testing',
],
entry_points={
'fanstatic.injectors': [
'rules = silva.fanstatic.injector:RuleBasedInjector',
],
},
tests_require = tests_require,
extras_require = {'test': tests_require},
)