-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 908 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
import sys
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
if sys.version_info[0] < 3:
with open(os.path.join(BASE_DIR, 'README.rst')) as f:
long_description = f.read()
else:
with open(os.path.join(BASE_DIR, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='cabot-alert-webhook',
version='0.1.0',
description='A Webhook plugin for Cabot',
long_description=long_description,
author='Rockerbox',
author_email='[email protected]',
url='https://github.com/rockerbox/cabot-alert-webhook',
packages=find_packages(),
download_url = 'https://github.com/rockerbox/cabot-alert-webhook/tarball/master',
bugtrack_url = "https://github.com/rockerbox/cabot-alert-webhook/issues",
keywords = ['cabot', 'webhook', 'status check'],
)