-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.2 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
version = '0.5.0.dev0'
setup(
name='slc.clicktracker',
version=version,
description='Track user movements on your plone site.',
long_description='\n'.join((
open('README.txt').read(),
open('HISTORY.txt').read(),
)),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Plone',
],
keywords='CMFEditions flexbox',
author='Izak Burger, Syslab.com GmbH',
author_email='[email protected]',
url='https://github.com/syslabcom/slc.clicktracker',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['slc'],
include_package_data=True,
package_data={'slc.clicktracker': ['sql/*']},
zip_safe=False,
install_requires=[
'setuptools',
'psycopg2 >=2.4.2',
'plone.api',
],
entry_points='''
[z3c.autoinclude.plugin]
target = plone
''',
)