You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment only files ending in ".py", ".csv" or ".md" are added to the distribution, because we don't want to add any ".pyc" file.
# setup.py (around l. 136)pybamm_data= []
forfile_extin ["*.csv", "*.py", "*.md", ".txt"]:
# Get all the files ending in file_ext in pybamm/input dir.# list_of_files = [# 'pybamm/input/drive_cycles/car_current.csv',# 'pybamm/input/drive_cycles/US06.csv',# ...list_of_files=glob.glob("pybamm/input/**/"+file_ext, recursive=True)
...
Do we need to edit MANIFEST.in? Are there other things we forgot to add to this @tlestang ?
The text was updated successfully, but these errors were encountered: