forked from damies13/rfswarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-agent.py
31 lines (29 loc) · 1.12 KB
/
setup-agent.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
import setuptools
with open("README_PyPi.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="rfswarm-agent",
version = "1.0.3",
author="damies13",
author_email="[email protected]",
description="rfswarm Agent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/damies13/rfswarm",
packages=setuptools.find_packages(exclude=["*fswarm_report*", "*rfswarm_manager*", "build/*"]),
install_requires=['configparser', 'requests', 'robotframework', 'psutil'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
project_urls={
'Getting Help': 'https://github.com/damies13/rfswarm#getting-help',
'Say Thanks!': 'https://github.com/damies13/rfswarm#donations',
'Source': 'https://github.com/damies13/rfswarm',
},
entry_points = {'console_scripts': ['rfswarm-agent = rfswarm_agent.rfswarm_agent:RFSwarm']},
)