-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 873 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
from setuptools import setup, find_packages
def readme():
with open('README.rst', 'r') as f:
return f.read()
version = __import__('nodemon').get_version()
setup(
name='nodemon',
version=version,
description='Webservice node monitoring tool',
long_description=readme(),
url='https://github.com/anti1869/nodemon',
author='Dmitry Litvinenko',
author_email='[email protected]',
packages=['nodemon', 'nodemon.groups', 'nodemon.web'],
scripts=['nodemon/bin/monitor.py'],
include_package_data=True,
install_requires=[
'mysqlclient',
'web.py>=0.37',
],
license='MIT',
zip_safe=False)
print "************************************************************"
print "Hey, type 'monitor.py --install' to do initial configuration"
print "************************************************************"