Skip to content

Commit

Permalink
update supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Noordsestern committed Feb 19, 2024
1 parent c3418fc commit 9456d83
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@
name = "Markus Stahl"

version_regex = r"^v(?P<version>\d*\.\d*\.\d*$)"
version = os.environ.get('CI_COMMIT_TAG', f'2.{os.environ.get("CI_COMMIT_REF_NAME","0.0")}')
version = os.environ.get(
"CI_COMMIT_TAG", f'2.{os.environ.get("CI_COMMIT_REF_NAME","0.0")}'
)
full_version_match = re.fullmatch(version_regex, version)
if full_version_match:
version = full_version_match.group('version')
version = full_version_match.group("version")

setup(
name="robotframework-camunda",
Expand All @@ -28,14 +30,25 @@
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework",
],
license="Apache License, Version 2.0",
install_requires=["robotframework>=3.2", "requests", "frozendict", 'generic-camunda-client>=7.15.0','requests_toolbelt','url-normalize'],
install_requires=[
"robotframework>=3.2",
"requests",
"frozendict",
"generic-camunda-client>=7.15.0",
"requests_toolbelt",
"url-normalize",
],
include_package_data=True,
)

0 comments on commit 9456d83

Please sign in to comment.