-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release version 2.0.1, update package metadata (#15)
* Update PyPI classifiers * Add PyPI changelog URL * Add release script
- Loading branch information
Showing
4 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,6 @@ MANIFEST | |
cscope.* | ||
.idea/ | ||
.tox/ | ||
venv/ | ||
.venv/ | ||
_local/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
if [[ -n "$(git status -s)" ]]; then | ||
echo "git working tree is not clean, aborting" | ||
exit 1 | ||
fi | ||
if [[ "$VIRTUAL_ENV" == "" ]]; then | ||
echo "this script must be executed inside an active virtual env, aborting" | ||
exit 1 | ||
fi | ||
|
||
pip install --upgrade pip setuptools wheel twine build | ||
rm -rf dist/ build/ | ||
python -m build | ||
twine upload dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,16 @@ def long_description(): | |
author_email="[email protected]", | ||
python_requires=">=3.7", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 6 - Mature", | ||
"Framework :: Django", | ||
"Framework :: Django :: 2.2", | ||
"Framework :: Django :: 3.0", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
"Framework :: Django :: 4.1", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"Intended Audience :: Developers", | ||
( | ||
"License :: OSI Approved :: " | ||
|
@@ -42,6 +50,9 @@ def long_description(): | |
name="dogslow-sentry", | ||
packages=["dogslow_sentry"], | ||
url="https://github.com/intgr/dogslow-sentry", | ||
project_urls={ | ||
"Release notes": "https://github.com/intgr/dogslow-sentry/blob/main/README.rst#changelog", | ||
}, | ||
install_requires=["django>=2.2", "sentry-sdk>=1.0"], | ||
version="2.0.0", | ||
version="2.0.1", | ||
) |