-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add release instructions and CD automation (#235)
- Build the distribution package (wheel file) in CI - Install from wheel file so that CI tests imitate users who install xl2times from PyPI - CD: when releases are published on GitHub, automatically upload to PyPI - Add release instruction to README I'm merging this PR in so that I can test the publish-upon-release action with Test-PyPI. If you have any comments, please leave them here, and I'll resolve them in the next PR that swaps Test-PyPI for real PyPI. Thanks!
- Loading branch information
1 parent
c000f23
commit 0cb35dc
Showing
4 changed files
with
37 additions
and
16 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
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
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,12 +2,13 @@ | |
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
packages = ["xl2times"] | ||
[tool.setuptools.packages.find] | ||
where = [""] | ||
include = ["xl2times", "xl2times.*"] | ||
|
||
[project] | ||
name = "xl2times" | ||
version = "0.1.0" | ||
version = "0.1.0-alpha.2" | ||
authors = [ | ||
{ name="Sam Webster", email="[email protected]" }, | ||
{ name="Tom Minka", email="[email protected]" }, | ||
|