Skip to content

Commit

Permalink
Add python requirement >=3.6 and update classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
maretodoric committed May 25, 2023
1 parent 79ccf42 commit 89de8f8
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@
#py_modules=['pyjboss'],
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires = ['requests', 'jmespath'],
#python_requires='>=3.10',
python_requires='>=3.6',
)

0 comments on commit 89de8f8

Please sign in to comment.