Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ data/*
data_cmd/*
!data/.gitkeep
__pycache__
*.egg-info/
build/
dist/
__pycache__/
*.pyc
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include LICENSE
include README.md
include requirements.txt
include installation/requirements.txt
619 changes: 427 additions & 192 deletions README.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

# Populating the install requirements
requirements = []
requirements_path = os.path.join(setupDir, "requirements.txt")
requirements_path = os.path.join(setupDir, "installation", "requirements.txt")
if os.path.exists(requirements_path):
with open(requirements_path, mode="r", encoding="utf-8") as f:
egg = re.compile(r"#[^#]*egg=([^=&]+)")
Expand Down Expand Up @@ -74,8 +74,9 @@
"modelname-tdp-finder.py",
"plotGraph.py",
"tdp-finder.py",
"execution-metrics-collector.sh",
"plotGraph.sh",
"legacy/execution-metrics-collector.sh",
"legacy/plotGraph.sh",
"legacy/plot-metrics.sh",
],
install_requires=requirements,
# See https://pypi.org/classifiers/
Expand Down
Loading