Skip to content

Commit

Permalink
fix package import, bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gituser789 committed May 8, 2024
1 parent 95dbc56 commit 785e4b4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ pygeckocircuits2/__pycache__/
pygeckocircuits2/config.json
examples/remote_geckocircuits_example.ipes
docs/build/
dist/
dist/
gpgit/
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Automatic deployment to pyPI

### Fixed
- missing module inside python package

## [0.0.1] - 2024-05-08
### Added
- Initial package to control GeckoCircuits from python



[unreleased]: https://github.com/upb-lea/pygeckocircuits2/compare/v0.0.1...HEAD
[0.0.2]: https://github.com/upb-lea/pygeckocircuits2/compare/v0.0.1...v0.0.2
[0.0.1]: https://github.com/upb-lea/pygeckocircuits2/releases/tag/v0.0.1
[unreleased]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.2...HEAD
[0.0.2]: https://github.com/upb-lea/pygeckocircuits2/compare/0.0.1...0.0.2
[0.0.1]: https://github.com/upb-lea/pygeckocircuits2/releases/tag/0.0.1
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
project = 'PyGeckoCircuits2'
copyright = '2024, UPB-LEA'
author = 'UPB-LEA'
release = '0.0.1'
release = '0.0.2'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pygeckocircuits2"
version = "0.0.1"
version = "0.0.2"
authors = [
{ name = "UPB-LEA" },
]
Expand Down Expand Up @@ -30,11 +30,11 @@ build-backend = "hatchling.build"
files = ["requirements.txt"]

[tool.hatch.build.targets.wheel]
packages = ["src/"]
packages = ["pygeckocircuits2/"]

[tool.hatch.build.targets.sdist]
include = [
"src/*.py",
"pygeckocircuits2/*.py",
"tests",
"requirements.txt"
]
Expand Down

0 comments on commit 785e4b4

Please sign in to comment.