-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to github actions to python 312 (#63)
* switch to py312 * add software disclaimer * update frontmatter for release; following USEPA/open-source-projects * update pyproject.toml authors
- Loading branch information
1 parent
69da956
commit 4e34b3e
Showing
7 changed files
with
38 additions
and
24 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
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
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
Empty file.
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,9 +1,11 @@ | ||
[project] | ||
name = "bmds_ui" | ||
license = {text = "MIT License"} | ||
authors = [{name = "Andy Shapiro", email = "[email protected]"}] | ||
authors = [ | ||
{name = "Andy Shapiro", email = "[email protected]"} | ||
] | ||
readme = "README.md" | ||
description = "US EPA Dose Response Modeling Software" | ||
description = "U.S. EPA Dose Response Modeling Software User Interface" | ||
dynamic = ["version"] | ||
keywords = [ | ||
"dose response", | ||
|
@@ -78,13 +80,16 @@ prod = [ | |
] | ||
|
||
[project.urls] | ||
Source = "https://github.com/USEPA/bmds-online-private" | ||
"Source" = "https://github.com/USEPA/bmds-ui" | ||
"Changes" = "https://github.com/USEPA/bmds-ui/blob/main/HISTORY.md" | ||
"Issue Tracker" = "https://github.com/USEPA/bmds-ui/issues" | ||
"Download" = "https://pypi.org/project/bmds-ui/" | ||
|
||
[project.scripts] | ||
"manage.py" = "bmds_ui:manage" | ||
manage = "bmds_ui:manage" | ||
bmds = "bmds_ui.desktop.cli:main" | ||
bmdsdesktop = "bmds_ui.desktop.cli:main" | ||
"manage" = "bmds_ui:manage" | ||
"bmds" = "bmds_ui.desktop.cli:main" | ||
"bmdsdesktop" = "bmds_ui.desktop.cli:main" | ||
"bmds_desktop" = "bmds_ui.desktop.cli:main" | ||
"bmds-desktop" = "bmds_ui.desktop.cli:main" | ||
|
||
|