Skip to content

Commit

Permalink
Fixed terrible terrible package build problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
WyvernIXTL committed Jun 27, 2024
1 parent 38fe7ab commit 228520d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]



## [0.2.1] - 2024-06-27

### Fixed

* Fixed setuptool build.


## [0.2.0] - 2024-06-27

### Added
Expand All @@ -26,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial release.


[unreleased]: https://github.com/instructions-d-installation/web-installation-instruction/compare/v0.2.0...HEAD
[unreleased]: https://github.com/instructions-d-installation/web-installation-instruction/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/instructions-d-installation/web-installation-instruction/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/instructions-d-installation/web-installation-instruction/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/instructions-d-installation/web-installation-instruction/releases/tag/v0.1.0
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ authors = [
{ name = "Kanushka Gupta" },
{ name = "Timo Ege", email = "[email protected]" },
]
version = "0.2.0"
version = "0.2.1"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
Expand All @@ -39,3 +39,9 @@ ibi-build-html = "web_installation_instruction.__main__:run_cli"
Repository = "https://github.com/instructions-d-installation/web-installation-instruction"
Issues = "https://github.com/instructions-d-installation/web-installation-instruction/issues"
Changelog = "https://github.com/instructions-d-installation/web-installation-instruction/blob/main/CHANGELOG.md"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
web_installation_instruction = ["template/*.jinja"]
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from setuptools import setup, find_packages

setup(
packages=find_packages("src"),
)
setup()
Empty file.

0 comments on commit 228520d

Please sign in to comment.