-
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.
Closes #111
- Loading branch information
Showing
2 changed files
with
39 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Authors and Contributors | ||
======================== | ||
|
||
## Origins | ||
|
||
The project originally started in a Microsoft [repository](https://github.com/microsoft/times-excel-reader) under the name times-excel-reader. The following individuals contributed to its development at Microsoft: | ||
|
||
- Sam Webster ([@samwebster](https://github.com/samwebster) - vast majority of work done in his own time) | ||
- Tom Minka ([@tminka](https://github.com/tminka)) | ||
- Siddharth Krishna ([@siddharth-krishna](https://github.com/siddharth-krishna)) | ||
- Pashmina Cameron | ||
- Sarah Lewis | ||
- Krzysztof Maziarz | ||
- Pavel Myshkov | ||
- Alex Spengler | ||
- Niloy Dey ([@niloyroot](https://github.com/niloyroot)) | ||
- Alejandro Romero Prieto ([@AlexRomeroPrieto](https://github.com/AlexRomeroPrieto)) | ||
|
||
## Current development | ||
|
||
Since 2023, the project has been developed as [xl2times](https://github.com/etsap-TIMES/xl2times) under [IEA-ETSAP](https://iea-etsap.org/). The following individuals contributed to its developement: | ||
|
||
- Sam Webster ([@samwebster](https://github.com/samwebster)) | ||
- Siddharth Krishna ([@siddharth-krishna](https://github.com/siddharth-krishna)) | ||
- Olexandr Balyk ([@olejandro](https://github.com/olejandro)) | ||
- Sam West ([@SamRWest](https://github.com/SamRWest)) | ||
|
||
Special thanks to the current [TIMES](https://github.com/etsap-TIMES/TIMES_model/) maintainer Antti Lehtilä ([@Antti-L](https://github.com/Antti-L)) for his continued engagement and feedback. |
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" } | ||
|