Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
skarim committed Nov 21, 2018
1 parent 05f1dc5 commit 463ae4c
Showing 1 changed file with 23 additions and 11 deletions.
34 changes: 23 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
#!/usr/bin/env python

from setuptools import setup, find_packages
import os
import sys

setup(name='cabot-alert-webhook',
version='0.0.1',
description='A Webhook plugin for Cabot',
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'],
)
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'],
)

0 comments on commit 463ae4c

Please sign in to comment.