forked from lfagundes/fish-slapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 898 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
from setuptools import setup, find_packages
import os
setup(name = 'fish_slapping',
version = '0.1',
description = 'Server monitoring with Jabber',
long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
author = "Luis Fagundes",
author_email = "[email protected]",
license = "GPL3",
packages = find_packages(),
entry_points = {
'console_scripts': [
'fish_slapping_bot = fish_slapping:run_bot',
]
},
classifiers = [
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Topic :: System',
],
url = 'http://github.com/lfagundes/fish-slapping/',
)