-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.11 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
from setuptools import setup, find_packages
version = '0.1+perfact.5'
setup(name='Products.SimpleUserFolder',
version=version,
description="PerFact Version of the Zope Product SimpleUserFolder",
long_description="""The Product SimpleUserFolder allows methods from the
Data.fs to provide the user list, user addition, modification and deletion,
and authorization.
""",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Framework :: Zope :: 2",
"Framework :: Zope :: 4"
],
keywords='',
author='PerFact Innovation GmbH & Co. KG',
author_email='info@perfact.de',
url='https://github.com/perfact/SimpleUserFolder',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
package_data={
'Products.SimpleUserFolder': ['www/*', ],
},
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
namespace_packages=['Products'],
entry_points="""
# -*- Entry points: -*-
""",
)