Skip to content

Commit

Permalink
BUG: pyproject.toml Main Module Finding.
Browse files Browse the repository at this point in the history
  • Loading branch information
phmbressan committed Jun 2, 2024
1 parent 941e73b commit 2cee047
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- These are the changes that were not release yet, please add them correctly.
Attention: The newest changes should be on top -->

## [1.3.0.post1] - 2024-06-02

You can install this version by running `pip install rocketpy==1.3.0.post1`

### Fixed

- BUG: pyproject.toml Main Module Finding. [#616](https://github.com/RocketPy-Team/RocketPy/pull/616)

## [1.3.0] - 2024-06-01

You can install this version by running `pip install rocketpy==1.3.0`
Expand Down Expand Up @@ -62,6 +70,7 @@ You can install this version by running `pip install rocketpy==1.3.0`

### Fixed

- MNT: Alter PYPI classifier naming. [#615](https://github.com/RocketPy-Team/RocketPy/pull/615)
- DOC: Solve Dependencies Conflicts and pyproject build [#613](https://github.com/RocketPy-Team/RocketPy/pull/613)
- BUG: Fixes nose cone bluffness issue #610 [#611](https://github.com/RocketPy-Team/RocketPy/pull/611)
- BUG: plot drag curves when function source is callable [#599](https://github.com/RocketPy-Team/RocketPy/pull/599)
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Rocket Flight Simulation :: Libraries :: Python Modules",
]

[project.urls]
Expand All @@ -21,11 +20,11 @@ documentation = "https://docs.rocketpy.org/"
repository = "https://github.com/RocketPy-Team/RocketPy"

[build-system]
requires = ["setuptools"]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
py-modules = ['rocketpy']
packages = { find = { where = ["."], include = ["rocketpy*"] } }

[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
Expand Down

0 comments on commit 2cee047

Please sign in to comment.