-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vcs-sourced versioning for bluesky-simulator, calver versioning for data packages
- Loading branch information
Showing
5 changed files
with
58 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "2024.12.18" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "2024.12.18" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "bluesky-guidata" | ||
version = "1.0.0" | ||
dynamic = ["version"] | ||
|
||
authors = [ | ||
{ name="Joost Ellerbroek", email="[email protected]" }, | ||
|
@@ -28,9 +28,13 @@ Homepage = "https://github.com/TUDelft-CNS-ATM/bluesky" | |
Issues = "https://github.com/TUDelft-CNS-ATM/bluesky/issues" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
requires = ["hatchling==1.26.3", "hatch-calver"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.build.targets.sdist.force-include] | ||
[tool.hatch.version] | ||
scheme = "calver" | ||
path = "../../bluesky/resources/graphics/__init__.py" | ||
|
||
[tool.hatch.build.force-include] | ||
"../../bluesky/resources/graphics" = "bluesky/resources/graphics" | ||
"../../bluesky/resources/html" = "bluesky/resources/html" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[project] | ||
name = "bluesky-navdata" | ||
dynamic = ["version"] | ||
|
||
authors = [ | ||
{ name="Joost Ellerbroek", email="[email protected]" }, | ||
{ name="Jacco Hoekstra", email="[email protected]" } | ||
] | ||
|
||
description = "Navigation data files for the BlueSky Open ATM Simulator" | ||
readme = "../../README.md" | ||
requires-python = ">=3.10" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Development Status :: 4 - Beta", | ||
|
||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering", | ||
|
||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
|
||
"Operating System :: OS Independent", | ||
] | ||
keywords = ['ATM', 'transport', 'simulation', 'aviation', 'aircraft'] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/TUDelft-CNS-ATM/bluesky" | ||
Issues = "https://github.com/TUDelft-CNS-ATM/bluesky/issues" | ||
|
||
[build-system] | ||
requires = ["hatchling==1.26.3", "hatch-calver"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.version] | ||
scheme = "calver" | ||
path = "../../bluesky/resources/navdata/__init__.py" | ||
|
||
[tool.hatch.build.force-include] | ||
"../../bluesky/resources/navdata" = "bluesky/resources/navdata" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters