forked from collective/Products.PloneKeywordManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (52 loc) · 1.97 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
import os
from setuptools import setup, find_packages
version = '2.1.2.dev0'
long_description = open("README.rst").read() + "\n" + \
open(os.path.join("docs", "HISTORY.txt")).read()
setup(name='Products.PloneKeywordManager',
version=version,
description="Plone Keyword Manager allows you to change, merge and delete \
keywords in Plone and updates all corresponding objects automatically.\
It uses a similiarity search to support you in identifying similar keywords.\
Keywords can be cleaned up from time to time by a site manager to \
create a consistent vocabulary.",
long_description=long_description,
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone keywords',
author='Michael Dunlap',
author_email='[email protected]',
url='https://github.com/collective/Products.PloneKeywordManager',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
extras_require={
'Levenshtein': ['python-Levenshtein'],
'test': [
'plone.app.testing',
'plone.app.dexterity',
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)