-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.31 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
from setuptools import setup, find_packages
import os
version = "0.7.2.dev0"
setup(
name="Products.SimpleGroupsManagement",
version=version,
description="A Plone utility that let non-Manager users able to manage some (specific) groups",
long_description=open("README.rst").read()
+ "\n"
+ open(os.path.join("docs", "HISTORY.rst")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Plone :: Addon",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
],
keywords="plone users groups acl",
author="keul",
author_email="[email protected]",
url="https://github.com/collective/Products.SimpleGroupsManagement",
license="GPL",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["Products"],
include_package_data=True,
zip_safe=False,
install_requires=["setuptools", "Products.CMFPlone", "plone.api",],
entry_points="""
# -*- Entry points: -*-
""",
)