feat: Update project configuration for packaging
- Updated `.gitignore` to exclude the `dist/` directory, ensuring build artifacts are not tracked in Git, maintaining repository cleanliness. - Renamed project to `trackingmore-api-tool` in `pyproject.toml` for better identification and consistency across platforms. - Added configuration for wheel packaging in `pyproject.toml`, facilitating easier package distribution and installation.
This commit is contained in:
parent
b68b7c438e
commit
e9c7eb07bc
2 changed files with 8 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ venv/
|
|||
*.pyc
|
||||
__pycache__/
|
||||
settings.ini
|
||||
dist/
|
|
@ -3,7 +3,7 @@ requires = ["hatchling"]
|
|||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "trackingmore"
|
||||
name = "trackingmore-api-tool"
|
||||
version = "0.1.2"
|
||||
authors = [
|
||||
{ name="Kumi Mitterer", email="trackingmore-api-tool@kumi.email" },
|
||||
|
@ -18,6 +18,11 @@ classifiers = [
|
|||
"Operating System :: OS Independent",
|
||||
]
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = [
|
||||
"src/trackingmore"
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
"Homepage" = "https://kumig.it/kumitterer/trackingmore-api-tool"
|
||||
"Bug Tracker" = "https://kumig.it/kumitterer/trackingmore-api-tool/issues"
|
||||
|
|
Loading…
Reference in a new issue