Skip to content

Commit

Permalink
maint: package data takes only .dat files
Browse files Browse the repository at this point in the history
  • Loading branch information
giganano committed Jan 14, 2022
1 parent 56836cd commit 4fa9dc2
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,17 +199,10 @@ def find_package_data():
Extensions
----------
.dat : files holding built-in data
.obj : a pickled object -> currently the only instance is the pickled
dictionary containing version info of build dependencies
VICE's C extensions are compiled individually and wrapped into a
shared object using make. All of this output is moved to the install
directory to allow forward compatibility with future features that may
require it.
"""
packages = find_packages()
data = {}
data_extensions = [".dat", ".obj"]
data_extensions = [".dat"]
for i in packages:
data[i] = []
for j in os.listdir(i.replace('.', '/')):
Expand Down

0 comments on commit 4fa9dc2

Please sign in to comment.