File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44import platform
55import subprocess
66
7- from setuptools import setup , Extension
7+ from setuptools import setup , Extension , find_namespace_packages
88from setuptools .command .build_ext import build_ext
99from distutils .version import LooseVersion
1010
@@ -69,17 +69,7 @@ def build_extension(self, ext):
6969 ext_modules = [CMakeExtension ('dqrobotics._dqrobotics' )],
7070 cmdclass = dict (build_ext = CMakeBuild ),
7171 zip_safe = False ,
72- packages = ['dqrobotics' ,
73- 'dqrobotics.robots' ,
74- 'dqrobotics.robot_modeling' ,
75- 'dqrobotics.utils' ,
76- 'dqrobotics.utils.DQ_Math' ,
77- 'dqrobotics.utils.DQ_LinearAlgebra' ,
78- 'dqrobotics.interfaces' ,
79- 'dqrobotics.interfaces.json11' ,
80- 'dqrobotics.robot_control' ,
81- 'dqrobotics.solvers' ,
82- 'dqrobotics-stubs' ],
72+ packages = find_namespace_packages (where = '.' ),
8373 package_data = {
8474 'dqrobotics-stubs' : ["**/*.pyi" ],
8575 },
You can’t perform that action at this time.
0 commit comments