-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
78 lines (73 loc) · 2.22 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
70
71
72
73
74
75
76
77
78
from setuptools import find_packages
from setuptools import setup
import monkeypatch_setup # noqa: F401
import os
version = "11.0.0.dev0"
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=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 6.0",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"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 >=14.0.0",
"ftw.upgrade",
"mobile.sniffer",
"NuPlone >=2.1.0",
"pas.plugins.ldap",
"Pillow",
"plone.api",
"plone.autoform",
"plone.formwidget.recaptcha",
"plone.restapi",
"plone.tiles",
"Products.MemcachedManager",
"Products.statusmessages",
"requests",
"setuptools",
"slc.zopescript",
"zope.app.publication",
"zope.publisher",
],
python_requires=">=3.11,<3.13",
extras_require={
"tests": [
"Euphorie [tests]",
"node.ext.ldap",
"pas.plugins.ldap",
"plone.app.robotframework[debug]",
"plone.app.testing",
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
[console_scripts]
outdated_tools = osha.oira.scripts:outdated_tools
write_statistics = osha.oira.scripts:write_statistics
clean_up_guest_sessions = osha.oira.sql_scripts:clean_up_guest_sessions
""",
)