-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (40 loc) · 1.33 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
from setuptools import setup, find_packages
import os
version = '0.9.6'
setup(name='collective.behavior.sql',
version=version,
description="collective.behavior.sql",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read(),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='dexterity, behavior, sql',
author='Martronic SA',
author_email='[email protected]',
url='http://www.martronic.ch',
license='GPL',
packages = find_packages(),
namespace_packages=['collective', 'collective.behavior'],
include_package_data=True,
package_data = {
'': ['*.txt', '*.rst', '*.zcml', '*.xml', '*.pot', '*.po', '*.sh', '*.mo'],
},
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.dexterity',
'collective.saconnect',
'collective.dexteritytextindexer',
'z3c.saconfig',
'collective.monkeypatcher' # this is used only to override getObject from catalog brain
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)