-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (48 loc) · 1.47 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
from setuptools import setup, find_packages
import os
version = "2.0.2.dev0"
tests_require = [
"plone.app.testing",
"plone.app.contenttypes",
"plone.app.robotframework[debug]",
"unittest2",
]
setup(
name="collective.analyticspanel",
version=version,
description="Add more control over the inclusion of JavaScript analytics code of your Plone site",
long_description=open("README.rst").read()
+ "\n"
+ open(os.path.join("docs", "HISTORY.rst")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
],
keywords="plone analytics plonegov",
author="RedTurtle Technology",
author_email="[email protected]",
url="http://plone.org/products/collective.analyticspanel",
license="GPL",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["collective"],
include_package_data=True,
zip_safe=False,
tests_require=tests_require,
extras_require=dict(test=tests_require),
install_requires=[
"setuptools",
"collective.z3cform.datagridfield",
"plone.app.registry",
"plone.app.vocabularies",
"plone.api",
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)