Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixed missing packages in the site-packages folder #4

Merged
merged 4 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"