forked from collective/mockup-minimalpattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1013 Bytes
/
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
from setuptools import find_packages
from setuptools import setup
import json
package_json = json.load(open('package.json'))
version = package_json['version']
setup(
name='mockup-minimalpattern',
version=version,
description="Extension to Mockup's patterns.",
long_description='{0}\n{1}'.format(
open("README.rst").read(),
open("CHANGES.rst").read(),
),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone mockup',
author='Plone Foundation',
author_email='[email protected]',
url='https://github.com/collective/mockup-minimalpattern',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'plone.resource',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)