Merge pull request #1 from zerotier/release-0.1.0

move things around for release process
This commit is contained in:
Grant Limberg
2023-11-08 12:11:43 -08:00
committed by GitHub
5 changed files with 33 additions and 3 deletions
+1
View File
@@ -1 +1,2 @@
.venv/
dist/
+22
View File
@@ -0,0 +1,22 @@
# Releasing Updates
## Things you'll need
* PyPI Publishing Token
* Build tools: `python3 -m pip install --upgrade build`
* Twine: `python3 -m pip install --upgrade twine`
## Releasing
Make changes & update version number
```bash
python3 -m build
python3 -m twine upload dist/*
```
When it asks for username password:
```bash
username: __token__
password: $PYPI_PUBLISHING_TOKEN
```
+10 -3
View File
@@ -1,14 +1,21 @@
[project]
name = "ztchooks"
version = "0.0.1"
version = "0.1.0"
authors = [{ name = "ZeroTier, Inc", email = "admin@zerotier.com" }]
description = "ZeroTier Hook Verification for Python 3"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Programing Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License v2.0",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/zerotier/ztchooks-py"
"Bug Tracker" = "https://github.com/zerotier/ztchooks-py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
View File