Skip to content

Commit

Permalink
chore: add pypi classifiers (#273)
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Moore <[email protected]>
  • Loading branch information
moorec-aws authored Mar 31, 2024
1 parent 74762f5 commit cbec389
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@

### Was this change documented?

### Is this a breaking change?
### Is this a breaking change?

----

*By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.*
1 change: 1 addition & 0 deletions .github/workflows/release_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ jobs:
# Run semantic-release to generate new changelog
pip install --upgrade hatch
hatch env create release
hatch run release:deps
NEXT_SEMVER=$(hatch run release:bump $BUMP_ARGS)
# Grab the new version's changelog and prepend it to the original changelog contents
Expand Down
4 changes: 1 addition & 3 deletions hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,8 @@ integ-test = "pytest --no-cov test/integ {args:}"

[envs.release]
detached = true
dependencies = [
"python-semantic-release == 8.7.*"
]

[envs.release.scripts]
deps = "pip install -r requirements-release.txt"
bump = "semantic-release -v --strict version --no-push --no-commit --no-tag --skip-build {args}"
version = "semantic-release -v --strict version --print {args}"
15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ dependencies = [
"requests == 2.31.*",
]
requires-python = ">=3.7"
description = "The AWS Deadline Cloud worker agent can be used to run a worker in an AWS Deadline Cloud fleet"
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: End Users/Desktop",
]

[project.scripts]
deadline-worker-agent = "deadline_worker_agent:entrypoint"
Expand Down

0 comments on commit cbec389

Please sign in to comment.