forked from luizirber/bosun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.22 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.22 KB
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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
import os
import sys
from distutils import log
long_desc = ''' '''
requires = ['Fabric', 'PyYAML', 'mom4-utils', 'python-dateutil']
setup(
name='bosun',
version='1.0',
url='https://bitbucket.org/luizirber/bosun',
download_url='https://bitbucket.org/luizirber/bosun',
license='PSF',
author='Luiz Irber, Guilherme Castelao',
author_email='luiz.irber@gmail.com, castelao@gmail.com',
description='',
long_description=long_desc,
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering',
],
platforms='any',
scripts=["bin/bosun"],
packages=find_packages(),
include_package_data=True,
install_requires=requires,
)