-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add authors and maintainers to pyproject.toml
- Loading branch information
Showing
1 changed file
with
11 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -8,7 +8,17 @@ packages = ["xl2times"] | |
[project] | ||
name = "xl2times" | ||
version = "0.1.0" | ||
description = 'An open source tool to convert Excel input files for TIMES models to the DD format accepted by GAMS' | ||
authors = [ | ||
{ name="Sam Webster", email="[email protected]" }, | ||
{ name="Tom Minka", email="[email protected]" }, | ||
{ name="Siddharth Krishna", email="[email protected]" }, | ||
{ name="Olexandr Balyk", email="[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name="Siddharth Krishna", email="[email protected]" }, | ||
{ name="Olexandr Balyk", email="[email protected]" }, | ||
] | ||
description = 'An open source tool to convert TIMES models specified in Excel a format ready for processing by GAMS' | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
license = { file = "LICENSE" } | ||
|