-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.54 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
50
51
52
'''
Created on 25 juil. 2016
@author: kengne
'''
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "GRUMOS",
version = "0.1",
url = '',
author_email = '[email protected]',
license = 'AGPL',
description = "A hypervision system for pragmatic IT manager",
long_description = read('README'),
author = 'Kengne Mabou',
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires = ['setuptools',
'jinja2',
'flask',
'flask-script',
'WTForms',
'mongoengine',
'blinker',
'mongomock',
'tox',
'flask_mongoengine',
'paramiko',
'plumbum',
'celery',
'fabric',
'python-crontab',
'Celery'
'shell',
'python-nmap',
],
classifiers = [
'Development Status :: Beta',
'Intended Audience :: IT Administrator :: IT Manager',
'License :: OSI Approved :: AGPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Monitoring :: Machine Learning :: Incident detection',
]
)