-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (48 loc) · 1.63 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
44
45
46
47
48
49
from setuptools import setup, find_packages
setup(
name='collective.zopeconsul',
version='0.4.dev0',
description='Asynchronous updating of consul with zope configration',
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.txt').read()),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Plone',
'Framework :: Plone :: 4.3',
'Framework :: Plone :: 5.0',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='',
author='Dylan Jay, Jon Pentland',
author_email='[email protected]',
url='https://github.com/collective/collective.zopeconsul/',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Zope2',
'python-consul',
'collective.monkeypatcher',
'zope.app.publication',
],
extras_require={
'test': ['plone.app.testing', 'plone.app.robotframework>=0.7.0rc4'],
},
entry_points='''
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
'''
)