forked from UPCnet/genweb.jsonify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.38 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
version = '1.6.dev0'
README = open("README.rst").read()
HISTORY = open(os.path.join("docs", "HISTORY.rst")).read()
setup(name='genweb.jsonify',
version=version,
description="JSON export",
long_description=README + "\n" + HISTORY,
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='genweb json export',
author='Victor Fernandez de Alba',
author_email='sneridagh@gmail.com',
url='https://github.com/UPCnet/genweb.jsonify',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['genweb'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
extras_require={'test': ['plone.app.testing',
'plone.app.testing[robot]>=4.2.2',
'plone.app.robotframework[debug]',]},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)