forked from ampledata/hambot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (49 loc) · 1.36 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup for the HamBot.
Source:: https://github.com/ampledata/hambot
"""
import os
import sys
import setuptools
__title__ = 'hambot'
__version__ = '1.0.0'
__author__ = 'Greg Albrecht W2GMD <[email protected]>'
__copyright__ = 'Copyright 2017 Greg Albrecht'
__license__ = 'Apache License, Version 2.0'
def publish():
"""Function for publishing package to pypi."""
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist')
os.system('twine upload dist/*')
sys.exit()
publish()
setuptools.setup(
name=__title__,
version=__version__,
description='HamBot - Slack Amateur (Ham) Radio Bot',
author='Greg Albrecht',
author_email='[email protected]',
packages=['hambot'],
package_data={'': ['LICENSE']},
package_dir={'hambot': 'hambot'},
license=open('LICENSE').read(),
long_description=open('README.rst').read(),
url='https://github.com/ampledata/hambot',
zip_safe=False,
include_package_data=True,
install_requires=[
'requests >= 2.8.1',
'slackbot'
],
entry_points={'console_scripts': ['hambot = hambot.cmd:cli']},
classifiers=[
'Topic :: Communications :: Ham Radio',
'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License'
],
keywords=[
'Ham Radio'
],
)