-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from NREL/v0.1.2
V0.1.2
- Loading branch information
Showing
9 changed files
with
83 additions
and
31 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "maturin" | |
|
||
[project] | ||
name = "altrios" | ||
version = "0.1.1.post2" | ||
version = "0.1.2" | ||
authors = [ | ||
{ name = "ALTRIOS Team", email = "[email protected]" }, | ||
{ name = "Chad Baker, Lead Developer" }, | ||
|
@@ -46,12 +46,13 @@ dependencies = [ | |
"requests", | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://www.nrel.gov/transportation/altrios.html" | ||
source = "https://github.com/NREL/altrios" | ||
|
||
[project.optional-dependencies] | ||
dev = ["black", "pytest", "maturin", "ipykernel"] | ||
|
||
[project.urls] | ||
Homepage = "https://www.nrel.gov/transportation/altrios.html" | ||
|
||
[tool.maturin] | ||
profile = "release" | ||
python-source = "python" | ||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,8 @@ | ||
# altrios-core | ||
|
||
This crate is primarily intended to be used as a backend for the [ALTRIOS PyPI package](https://pypi.org/project/altrios/), but it can also function as a dependency for other crates. | ||
|
||
## Developers | ||
To release this crate, you need to be setup as developer for this crate in crates.io. After making changes and updating the version number in Cargo.toml, you can run `cargo publish --dry-run` to make sure everything checks and then run `cargo publish` to release the update. | ||
|
||
In the future, we may incorporate this into GitHub Actions. |
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
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,8 @@ | ||
# altrios-proc-macros | ||
|
||
This crate contains procedural macros used in [altrios-core](https://crates.io/crates/altrios-core). | ||
|
||
## Developers | ||
To release this crate, you need to be setup as developer for this crate in crates.io. After making changes and updating the version number in Cargo.toml, you can run `cargo publish --dry-run` to make sure everything checks and then run `cargo publish` to release the update. | ||
|
||
In the future, we may incorporate this into GitHub Actions. |