Skip to content

Commit

Permalink
fix: Include csv within whl
Browse files Browse the repository at this point in the history
  • Loading branch information
kajanan1212 committed May 12, 2024
1 parent fe10fc2 commit 2f08fad
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ format:
lint:
./venv/bin/flake8 ./ibat

.PHONY: build-wheel
build-wheel:
rm -rf dist
rm -rf ibat.egg-info
rm -rf build
python setup.py sdist bdist_wheel

.PHONY: clean
clean:
rm -rf venv
4 changes: 4 additions & 0 deletions ibat/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
from .datasets import *
from . import (
_datasets,
datasets,
)
Empty file.
5 changes: 4 additions & 1 deletion ibat/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,10 @@ def run_dt_exp(

from_time = to_time

print("\rGENERATING & EXPORTING PLOTS FOR EACH BUS STOP ENDED.", flush=True)
print(
"\rGENERATING & EXPORTING PLOTS FOR EACH BUS STOP ENDED. ",
flush=True,
)


def export_mean_dt_plot_as_image(
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
classifiers=classifiers,
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
package_data={"": ["datasets/_datasets/*.csv"]},
install_requires=requirements,
project_urls={
"Source Code": "https://github.com/aaivu/ibat",
Expand Down

0 comments on commit 2f08fad

Please sign in to comment.