forked from collective/collective.jsonmigrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.29 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
# -*- coding:utf-8 -*-
from setuptools import setup
from setuptools import find_packages
version = 'Y.dev0'
description = "Migrations from legacy Plone sites (2.0, 2.1, 2.5) to Plone 4.0"
setup(
name='collective.jsonmigrator',
version=version,
description=description,
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Plone",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone transmogrifier ',
author='Rok Garbas',
author_email='[email protected]',
url='https://github.com/collective/collective.jsonmigrator',
license='BSD',
packages=find_packages(),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'simplejson',
'collective.transmogrifier',
'plone.app.transmogrifier',
'zope.app.container',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
"""
)