This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
forked from euphorie/osha.oira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (65 loc) · 2.17 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
68
69
from setuptools import setup, find_packages
import monkeypatch_setup
import os
version = '4.0.21.dev0'
tests_require = [
'Euphorie [tests]',
'mock',
'collective.testcaselayer',
]
setup(name='osha.oira',
version=version,
description="Euphorie customisations for OSHA-OiRA site.",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "changes.rst")).read(),
classifiers=[
"Framework :: Plone",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='euphorie osha oira',
author='syslab.com',
author_email='[email protected]',
url="http://www.oiraproject.eu/",
license='GPL',
packages=find_packages('src'),
package_dir={"": "src"},
namespace_packages=['osha'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Euphorie >=9.0.0',
'NuPlone >=1.3.9',
'Pillow',
'Products.statusmessages',
# We seem to have a persisten utility that prevents running upgrade
# steps. The following package is therefore added for providing the
# required interface.
'collective.js.jqueryui',
'htmllaundry',
'plone.autoform',
'plone.tiles',
'requests',
'setuptools',
'slc.zopescript',
'zope.publisher',
'mobile.sniffer',
'plone.api',
],
tests_require=tests_require,
extras_require={
"tests": tests_require + ['plone.app.testing',
'plone.app.robotframework[debug]'],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
[console_scripts]
outdated_tools = osha.oira.scripts:outdated_tools
write_statistics = osha.oira.scripts:write_statistics
""",
)