-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
7 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.1 |
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,20 @@ | ||
#!/bin/bash | ||
|
||
echo "Starting releasebuild! Last release in main branch was:" | ||
cat current_version.txt | ||
echo "" | ||
echo "Which version shall next release be?" | ||
read new_ver | ||
|
||
echo $new_ver > current_version.txt | ||
echo "version = \""$new_ver"\"" >> pyproject.toml | ||
|
||
rm dist/* | ||
|
||
python3 -m build | ||
|
||
echo "Please enter token for upload to PyPi" | ||
read -s PyPi_token | ||
echo | ||
|
||
twine upload dist/* -u __token__ -p $PyPi_token |
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 |
---|---|---|
|
@@ -2,9 +2,14 @@ | |
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/Jaxc/PyStageLinQ" | ||
"Bug Tracker" = "https://github.com/Jaxc/PyStageLinQ/issues" | ||
"Documentation" = "https://pystagelinq.readthedocs.io/en/latest/" | ||
"Funding" = "https://ko-fi.com/jaxcie" | ||
|
||
[project] | ||
name = "PyStageLinQ" | ||
version = "0.1.0" | ||
authors = [ | ||
{ email="[email protected]" }, | ||
] | ||
|
@@ -19,9 +24,3 @@ classifiers = [ | |
"Programming Language :: Python :: 3.10", | ||
] | ||
keywords = ["StageLinQ", "DJ", "VJ", "Denon DJ", "Prime Go", "Streaming"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/Jaxc/PyStageLinQ" | ||
"Bug Tracker" = "https://github.com/Jaxc/PyStageLinQ/issues" | ||
"Documentation" = "https://pystagelinq.readthedocs.io/en/latest/" | ||
"Funding" = "https://ko-fi.com/jaxcie" |