-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.3 KB
/
setup.py
File metadata and controls
55 lines (49 loc) · 1.3 KB
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
from setuptools import find_packages
from setuptools import setup
extras_require = {
'tests': [
'plone.app.testing',
'unittest2',
'ftw.builder',
'ftw.testbrowser',
'ftw.testing',
],
}
setup(name='arctic.web',
version='1.0.0.dev0',
author='4teamwork AG',
url='https://github.com/4teamwork/arctic.web',
license='GPL2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['arctic'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Plone',
'collective.editmodeswitcher',
'ftw.file',
'ftw.footer',
'ftw.htmlblock',
'ftw.iframeblock',
'ftw.inflator [dexterity]',
'ftw.lawgiver',
'ftw.mobile',
'ftw.news',
'ftw.redirector',
'ftw.simplelayout [contenttypes, mapblock]',
'ftw.sliderblock',
'ftw.statusmap',
'ftw.subsite',
'ftw.upgrade',
'plone.app.caching',
'plonetheme.blueberry',
'setuptools',
],
tests_require=extras_require['tests'],
extras_require=extras_require,
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)