Skip to content

Commit

Permalink
Merge pull request #4 from Aviksaikat/fix/config/folder/missing
Browse files Browse the repository at this point in the history
fix: fixed missing packages in the `site-packages` folder
  • Loading branch information
Aviksaikat authored Jul 6, 2024
2 parents 666b050 + 2e8dc21 commit 0a239a2
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

## [0.1.4] - 2024-07-06

### 🐛 Bug Fixes

- Pyproject.toml updated to ship the package with proper config files
- Module not found error

### ⚙️ Miscellaneous Tasks

- Some changes to the pip package. vesion 0.1.3 released
- Readme updated. pyproject.toml updated
- Trying to fix missing config files from wheel

<!-- generated by git-cliff -->
18 changes: 14 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,22 @@ lint-check = [
docs-serve = "mkdocs serve"
docs-build = "mkdocs build"


# Build configs
[tool.hatch.build.targets.sdist]
# include = [
# "src/**/*.py",
# ".configs/*"
include = [
"src/**/*.py",
".configs/*"
]
# exclude = ["build/", "dist/", "docs/", "tests/*", ".github/", "assets/", ".cruft.json", ".editorconfig", "mkdocs.yml"]
# only-include = ["src/nipe_py/*.py", ".configs"]

[tool.hatch.build.targets.wheel]
# artifacts = [
# ".configs/*",
# "*-torrc"
# ]
exclude = ["build/", "dist/", "docs/", "tests/*", ".github/", "assets/", ".cruft.json", ".editorconfig", "mkdocs.yml"]
packages = ["src/nipe_py", ".configs"]


[build-system]
Expand Down
2 changes: 1 addition & 1 deletion src/nipe_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

__all__ = ["Device", "Install", "Status", "Restart", "Start", "Stop"]

__version__ = "0.1.3"
__version__ = "0.1.4"

0 comments on commit 0a239a2

Please sign in to comment.