-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 loc) · 1.03 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
# -*- coding: utf8 -*-
import os
from setuptools import setup, find_packages
README = os.path.join(os.path.dirname(__file__),
'README.rst')
setup(name='ZopeHealthWatcher',
version='0.4',
description='Monitors A Zope server.',
long_description=open(README).read(),
author='Tarek Ziade',
author_email='tarek@ziade.org',
url='http://bitbucket.org/tarek/zopewatcher',
packages=find_packages(),
namespace_packages=['Products'],
install_requires=[
'setuptools',
'threadframe',
'Mako'
],
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tests_require=['Nose'],
test_suite='nose.collector',
include_package_data=True,
entry_points = {
"console_scripts": [
"zope_health_watcher = Products.ZopeHealthWatcher.check_zope:main",
]}
)