-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 944 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
28
29
30
31
from setuptools import setup, find_packages
import busm
# Load reStructedText description.
# Online Editor - http://rst.ninjs.org/
# Quick Reference - http://docutils.sourceforge.net/docs/user/rst/quickref.html
readme = open('README.md', 'r', encoding='utf-8')
longdesc = readme.read()
readme.close()
# See
# https://packaging.python.org/tutorials/packaging-projects/
# https://python-packaging.readthedocs.io/en/latest/non-code-files.html
setup(
name='busm',
version=busm.VERSION,
description='Help you get stdout of function execution through Email, Telegram and Line Notify.',
long_description=longdesc,
long_description_content_type='text/markdown',
packages=find_packages(),
url='https://github.com/virus-warnning/busm',
license='MIT',
author='Raymond Wu',
package_data={
'busm': ['conf/*']
},
install_requires=[
'requests', 'PyYAML'
],
python_requires='>=3.5'
)