-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (63 loc) · 2 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
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
setup(
name="plonestatic.euphorie",
version="1.0.0a6.dev0",
description="Euphorie Risk Assessment tool static resources",
long_description="\n".join(
[
Path("README.md").read_text(),
Path("CHANGES.md").read_text(),
"",
]
),
long_description_content_type="text/markdown",
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="euphorie OiRA Interactive Risk Assessment static resources",
author="Syslab.com",
url="https://github.com/euphorie/plonestatic.euphorie",
project_urls={
"Homepage": "https://github.com/euphorie",
"Source": "https://github.com/euphorie/plonestatic.euphorie",
"Issues": "https://github.com/euphorie/plonestatic.euphorie/issues",
},
license="GPL",
packages=find_packages("src"),
package_dir={"": "src"},
namespace_packages=["plonestatic"],
include_package_data=True,
zip_safe=False,
python_requires=">= 3.9",
install_requires=[
"Plone >=6.0",
"plone.patternslib",
],
tests_require=[
"plone.app.testing",
],
extras_require={
"tests": [
"plone.app.testing",
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)