Skip to content

Commit

Permalink
chore: add pypi classifiers (#266)
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 30, 2024
1 parent aebd13b commit 606bf97
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 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.*
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,6 @@ Note that setting the environment variable supersedes the config file setting.

# Build / Test / Release

## Setup Code Artifact
```
export CODEARTIFACT_ACCOUNT_ID=<account-id>
export CODEARTIFACT_DOMAIN=<domain>
export CODEARTIFACT_REPOSITORY=<repository>
export REGION=us-west-2
export CODEARTIFACT_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain $CODEARTIFACT_DOMAIN --domain-owner $CODEARTIFACT_ACCOUNT_ID --query authorizationToken --output text`
```

## Build the package.
```
hatch build
Expand Down Expand Up @@ -114,11 +105,6 @@ hatch run fmt
hatch run all:test
```

## Publish
```
./publish.sh
```

# Optional Third Party Dependencies - GUI

N.B.: Although this repository is released under the Apache-2.0 license, its optional GUI feature
Expand Down
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ dynamic = ["version"]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.7"
description = "Shared Python library that implements functionality to support client applications using AWS Deadline Cloud."
# 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",
"Operating System :: MacOS",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development :: Libraries"
]

# Note: All deps should be using >= since this is a *library* as well as an application.
# Applications that consume this library should be the ones that are more strictly
Expand Down

0 comments on commit 606bf97

Please sign in to comment.