We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811ef2b commit c5b606eCopy full SHA for c5b606e
setup.py
@@ -10,6 +10,8 @@
10
11
# Get the correct site-packages path dynamically
12
site_packages_path = sysconfig.get_path("purelib").split("/lib/")[1]
13
+if "dist-packages" in site_packages_path:
14
+ site_packages_path = site_packages_path.replace("dist-packages", "site-packages")
15
16
# Collect non-Python files
17
for folder in folders_to_copy:
@@ -19,6 +21,7 @@
19
21
file_path = os.path.normpath(path)
20
22
sub_path.setdefault(folder_path, []).append(file_path)
23
24
+
25
files_to_copy.extend(sub_path.items())
26
27
with open("requirements.txt") as f:
@@ -29,7 +32,7 @@
29
32
30
33
setup(
31
34
name=app_name,
- version="1.0.4",
35
+ version="1.0.5",
36
description="pyCub - iCub in PyBullet",
37
package_dir={"": "."},
38
data_files=files_to_copy,
0 commit comments