mirror of
https://github.com/zerotier/ztchooks-py.git
synced 2026-05-22 16:29:44 -07:00
Merge pull request #1 from zerotier/release-0.1.0
move things around for release process
This commit is contained in:
@@ -1 +1,2 @@
|
||||
.venv/
|
||||
dist/
|
||||
|
||||
+22
@@ -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
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user