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
27 lines (25 loc) · 698 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 698 Bytes
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
from setuptools import setup, find_packages
version = '0.1'
setup(
name='collective.jsonify',
version=version,
description="provide json representation for content in Plone 2.0, 2.1, 2.5 and above",
long_description=open("README.rst").read(),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='',
author='',
author_email='',
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',
],
)