Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pyproject.toml updates #348

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ readme = "README.md"
requires-python = ">=3.10"
keywords = ["broker", "AnsibleTower", "docker", "podman", "beaker"]
authors = [{ name = "Jacob J Callahan", email = "jacob.callahan05@gmail.com" }]
# license-files = ["LICENSE"] - Not ready in setuptools until #4706 is released
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
Expand All @@ -22,14 +22,14 @@ classifiers = [
dependencies = [
"awxkit",
"click",
"dynaconf<4.0.0",
"dynaconf>=3.1.6,<4.0.0",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was needed because selective validation was added in 3.1.6.

"logzero",
"packaging",
"rich",
"rich_click",
"ruamel.yaml",
"setuptools",
"ssh2-python312",
"ssh2-python",
]
dynamic = [
"version",
Expand All @@ -45,9 +45,11 @@ docker = ["docker", "paramiko"]
podman = ["podman>=5.2"]
setup = ["build", "twine"]

ssh2_py311 = ["ssh2-python"]
ssh2_py311 = ["ssh2-python"] # temporary compatibility - removing in Broker 0.7
ssh2_python = ["ssh2-python"]
ssh2_python312 = ["ssh2-python312"]
ssh2_python312 = [
"ssh2-python",
] # temporary compatibility - removing in Broker 0.7
ansible_pylibssh = ["ansible-pylibssh"]
hussh = ["hussh>=0.1.7"]

Expand Down
Loading