/ setup.py
setup.py
 1  #!/usr/bin/env python
 2  
 3  from setuptools import find_packages, setup
 4  
 5  setup(name='cabot_check_status_go',
 6        version='0.1.0',
 7        description='A status-go canary check plugin for Cabot by Arachnys',
 8        author='Jakub SokoĊ‚owski',
 9        author_email='jakub@status.im',
10        url='https://github.com/status-im/cabot-check-status-go',
11        packages=find_packages(),
12        download_url = 'https://github.com/status-im/cabot-check-status-go/tarball/0.1.0',
13      )