-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (38 loc) · 876 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
try:
import multiprocessing
except ImportError:
pass
__author__ = "James King"
__email__ = "[email protected]"
__version__ = "0.1.1"
__license__ = "MIT"
setup(
name="dmon",
version=__version__,
packages=find_packages(),
setup_requires = [
'nose'
],
install_requires = [
'eventlet',
],
tests_require = [
'nose',
'mock',
],
test_suite = 'nose.collector',
author=__author__,
author_email=__email__,
license=__license__,
description="A stream processing service for monitoring distributed clusters.",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
],
entry_points={
'console_scripts': [
'dmon_shell = dmon.shell:run',
]
}
)