-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add feather and CSV SDF export options.
- Loading branch information
1 parent
b1763b0
commit 7a361bc
Showing
9 changed files
with
65 additions
and
36 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 |
---|---|---|
|
@@ -34,6 +34,7 @@ requirements: | |
- requests | ||
- bottleneck | ||
- constructive_geometries>=0.8.2 | ||
- pyarrow | ||
|
||
test: | ||
imports: | ||
|
Binary file not shown.
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
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 |
---|---|---|
|
@@ -15,3 +15,4 @@ datapackage | |
requests | ||
bottleneck | ||
constructive_geometries>=0.8.2 | ||
pyarrow |
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ def package_files(directory): | |
|
||
setup( | ||
name="premise", | ||
version="1.5.8", | ||
version="1.5.9", | ||
python_requires=">=3.9,<3.11", | ||
packages=packages, | ||
author="Romain Sacchi <[email protected]>, Alois Dirnaichner <[email protected]>, Chris Mutel " | ||
|
@@ -58,6 +58,7 @@ def package_files(directory): | |
"requests", | ||
"bottleneck", | ||
"constructive_geometries>=0.8.2", | ||
"pyarrow" | ||
], | ||
url="https://github.com/polca/premise", | ||
description="Coupling IAM output to ecoinvent LCA database ecoinvent for prospective LCA", | ||
|