-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 801 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
from setuptools import setup, find_packages
setup(
name="robottrace",
version="0.1.0",
packages=find_packages(),
install_requires=['python-dotenv', 'requests', 'watchdog'],
entry_points={
'console_scripts': [
'robottrace=scripts.trace:main',
],
},
# Metadata
author="Ofer Rahat",
author_email="[email protected]",
description="A tool to generate slack alerts for robot errors.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/gorefbitim/robottrace",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
)