-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
47 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,28 +4,28 @@ | |
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="rfswarm-agent", | ||
version="1.2.1", | ||
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=[ | ||
name = "rfswarm-agent", | ||
version = "v1.2.1", | ||
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={ | ||
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']}, | ||
entry_points = {'console_scripts': ['rfswarm-agent = rfswarm_agent.rfswarm_agent:RFSwarm']}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,31 +4,31 @@ | |
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="rfswarm-manager", | ||
version="1.2.1", | ||
author="damies13", | ||
author_email="[email protected]", | ||
description="rfswarm manager", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/damies13/rfswarm", | ||
packages=setuptools.find_packages(exclude=["*fswarm_report*", "*fswarm_agen*", "build/*"]), | ||
name = "rfswarm-manager", | ||
version = "1.2.1", | ||
author = "damies13", | ||
author_email = "[email protected]", | ||
description = "rfswarm manager", | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
url = "https://github.com/damies13/rfswarm", | ||
packages = setuptools.find_packages(exclude=["*fswarm_report*", "*fswarm_agen*", "build/*"]), | ||
# I needed a recent version of pip (pip 21.0.1 worked my previous <20 version didn't) for matplotlib | ||
# to actually install withput error | ||
# https://matplotlib.org/stable/users/installing.html | ||
install_requires=['configparser', 'HTTPServer', 'pillow>=9.1.0', 'psutil', 'pip>=21,>=22', 'matplotlib', 'requests'], | ||
classifiers=[ | ||
install_requires = ['configparser', 'HTTPServer', 'pillow>=9.1.0', 'psutil', 'pip>=21,>=22', 'matplotlib', 'requests'], | ||
classifiers = "[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Topic :: Software Development :: Testing", | ||
"Programming Language :: Python :: 3.7", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.7', | ||
project_urls={ | ||
python_requires = "'>=3.7', | ||
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 = rfswarm_manager.rfswarm:RFSwarm', 'rfswarm-manager = rfswarm_manager.rfswarm:RFSwarm']}, | ||
entry_points = "{'console_scripts': ['rfswarm = rfswarm_manager.rfswarm:RFSwarm', 'rfswarm-manager = rfswarm_manager.rfswarm:RFSwarm']}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,33 +4,33 @@ | |
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="rfswarm-reporter", | ||
version="1.2.1", | ||
author="damies13", | ||
author_email="[email protected]", | ||
description="rfswarm reporter", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/damies13/rfswarm", | ||
packages=setuptools.find_packages(exclude=["*fswarm_manag*", "*fswarm_agen*", "build/*"]), | ||
name = "rfswarm-reporter", | ||
version = "1.2.1", | ||
author = "damies13", | ||
author_email = "[email protected]", | ||
description = "rfswarm reporter", | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
url = "https://github.com/damies13/rfswarm", | ||
packages = setuptools.find_packages(exclude=["*fswarm_manag*", "*fswarm_agen*", "build/*"]), | ||
# I needed a recent version of pip (pip 21.0.1 worked my previous <20 version didn't) for matplotlib | ||
# to actually install withput error | ||
# https://matplotlib.org/stable/users/installing.html | ||
# zoneinfo requires python 3.9 | ||
# tzlocal is needed to get the local timezone in a format that zoneinfo likes | ||
install_requires=['configparser', 'pillow>=9.1.0', 'pip>=21,>=22', 'matplotlib', 'python-docx', 'openpyxl', 'tzlocal>=4.1'], | ||
classifiers=[ | ||
install_requires = ['configparser', 'pillow>=9.1.0', 'pip>=21,>=22', 'matplotlib', 'python-docx', 'openpyxl', 'tzlocal>=4.1'], | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Topic :: Software Development :: Testing", | ||
"Programming Language :: Python :: 3.9", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.9', | ||
project_urls={ | ||
python_requires = '>=3.9', | ||
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-reporter = rfswarm_reporter.rfswarm_reporter:RFSwarm']}, | ||
entry_points = {'console_scripts': ['rfswarm-reporter = rfswarm_reporter.rfswarm_reporter:RFSwarm']}, | ||
) |