-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i don't like it but maybe it will work
- Loading branch information
Showing
2 changed files
with
15 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
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,13 @@ | ||
import toml | ||
import os | ||
|
||
|
||
def parse_toml(file_path): | ||
with open(file_path, 'r') as f: | ||
return toml.load(f) | ||
|
||
|
||
# This function will be called by conda-build to load the pyproject.toml data | ||
def main(): | ||
pyproject_toml_path = os.path.join(os.getcwd(), 'pyproject.toml') | ||
return parse_toml(pyproject_toml_path) |