forked from collective/collective.jsonify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.2 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.2 KB
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
#!/usr/bin/env python
import sys
if sys.version_info < (2, 3):
from distutils.core import setup
def find_packages(exclude=None):
return ['collective', 'collective.jsonify']
else:
from setuptools import setup, find_packages
version = '1.1.dev0'
setup(
name='collective.jsonify',
version=version,
description="JSON representation for content in Plone from 2.0 and above",
long_description="%s\n%s" % (
open("README.rst").read(),
open("CHANGES.rst").read(),
),
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Programming Language :: Python",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
keywords='Plone content export json transmogrify',
author='Rok Garbas',
author_email='rok@garbas.si',
url='https://github.com/collective/collective.jsonify',
license='GPL',
packages=find_packages(),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'simplejson',
],
)