-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup-reporter.py
38 lines (36 loc) · 1.55 KB
/
setup-reporter.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
32
33
34
35
36
37
38
import setuptools
with open("README_PyPi.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="rfswarm-reporter",
version="1.3.2",
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', 'lxml'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Tool",
"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={
'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']},
)