-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 805 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
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload -r internal')
sys.exit()
setup(
name = "process_monitor",
version = "0.01",
description="process resource monitor",
long_description=open("README.md").read(),
author="yancl",
author_email="kmoving@gmail.com",
url='https://github.com/yancl/process_monitor',
classifiers=[
'Programming Language :: Python',
],
platforms='Linux',
license='MIT License',
zip_safe=False,
install_requires=[
'distribute', 'requests', 'web.py'
],
tests_require=[
'nose',
],
packages=['process_monitor']
)