Skip to content
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
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Select the option that best describes the size and impact of your change:
- [ ] Code is formatted with [black](https://github.com/psf/black) (line length = 88).
- [ ] Code is well documented with block comments where appropriate.
- [ ] Any external code, algorithms, or equations used have been cited in comments or docstrings.
- [ ] All new modules, classes, functions, and methods have docstrings in [reStructuredText format](https://realpython.com/documenting-python-code/), and are formatted using [docformatter](https://github.com/PyCQA/docformatter) (`--in-place --black`).
- [ ] All new classes, functions, and methods use type hints.
- [ ] All new modules, classes, functions, and methods have docstrings in [reStructuredText format](https://realpython.com/documenting-python-code/), and are formatted using [docformatter](https://github.com/PyCQA/docformatter) (`--in-place --black`). See the [style guide for type hints and docstrings](https://github.com/camUrban/PteraSoftware/blob/main/docs/TYPE_HINT_AND_DOCSTRING_STYLE.md) for more details.
- [ ] All new classes, functions, and methods in the `pterasoftware` package use type hints. See the [style guide for type hints and docstrings](https://github.com/camUrban/PteraSoftware/blob/main/docs/TYPE_HINT_AND_DOCSTRING_STYLE.md) for more details.
- [ ] If any major functionality was added or significantly changed, I have added or updated tests in the `tests` package.
- [ ] Code locally passes all tests in the `tests` package.
- [ ] After pushing, PR passes all automated checks (`codespell`, `black`, `mypy`, and `tests`).
Expand Down
2 changes: 1 addition & 1 deletion make_installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "PteraSoftware"
#define MyAppVersion "4.0.0"
#define MyAppVersion "4.0.1"
#define MyAppPublisher "CamUrban"
#define MyAppURL "https://github.com/camUrban/PteraSoftware"
#define MyAppExeName "PteraSoftware.exe"
Expand Down
27 changes: 15 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = PteraSoftware
version = 4.0.0
version = 4.0.1
author = Cameron Urban
author_email = camerongurban@gmail.com
license = MIT
Expand All @@ -13,34 +13,37 @@ project_urls =
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Visualization
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Operating System :: OS Independent
Typing :: Typed
keywords =
python
uav
simulation
aerospace
computational-biology
cfd
solvers
computational-fluid-dynamics
aerodynamics
aeronautics
aircraft-design
flight-dynamics
cfd
potential-flow
panel-method
vlm
aerospace-engineering
uvlm
vortex-lattice-method
unsteady-flows
aircraft-design
unmanned-aerial-vehicle
uav
micro-air-vehicle
ornithopter
ornithology
vortex-lattice-method
pyvista
flapping-wing
flapping-flight
bio-inspired-robotics

[options]
packages =
Expand Down