-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 972 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
#!/usr/bin/env python
# encoding=utf-8
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
setup(name='rtbot',
version='0.1.0', # Use bumpversio to update
long_description=README,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
author='Dan Michael O. Heggø',
author_email='[email protected]',
url='https://github.com/scriptotek/rtbot',
license='MIT',
install_requires=['python-dotenv',
'rt',
'requests',
'pyyaml',
'backoff',
'pydash'],
entry_points={'console_scripts': ['rtbot=rtbot.bot:main']},
packages=['rtbot']
)