-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
list internal dependencies as regular dependencies instead of using d…
…irect links with filepaths also exclude test/ folder from setuptools packages
- Loading branch information
Showing
6 changed files
with
20 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,13 @@ | |
description="Interfaces, hardware implementations of those interfaces and other functionalities to control robot manipulators and grippers at the Ghent University AI and Robotics Lab", | ||
author="Thomas Lips", | ||
author_email="[email protected]", | ||
install_requires=["numpy", "ur-rtde>=1.5.7", "click"], # cf https://github.com/airo-ugent/airo-mono/issues/52 | ||
extras_require={ | ||
"external": [ | ||
f"airo_typing @ file://localhost/{root_folder}/airo-typing", | ||
f"airo_spatial_algebra @ file://localhost/{root_folder}/airo-spatial-algebra", | ||
] | ||
}, | ||
install_requires=[ | ||
"numpy", | ||
"ur-rtde>=1.5.7", # cf https://github.com/airo-ugent/airo-mono/issues/52 | ||
"click", | ||
"airo-typing", | ||
"airo-spatial-algebra", | ||
], | ||
packages=setuptools.find_packages(), | ||
package_data={"airo_robots": ["py.typed"]}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,8 @@ | |
description="code for working with SE3 poses,transforms,... for robotic manipulation at the Ghent University AI and Robotics Lab", | ||
author="Thomas Lips", | ||
author_email="[email protected]", | ||
install_requires=[ | ||
"numpy", | ||
"scipy", | ||
"spatialmath-python", | ||
], | ||
extras_require={ | ||
"external": [ | ||
f"airo_typing @ file://localhost/{root_folder}/airo-typing", | ||
] | ||
}, | ||
packages=setuptools.find_packages(), | ||
install_requires=["numpy", "scipy", "spatialmath-python", "airo-typing"], | ||
packages=setuptools.find_packages(exclude=["test"]), | ||
# include py.typed to declare type information is available, see | ||
# https://mypy.readthedocs.io/en/stable/installed_packages.html#making-pep-561-compatible-packages | ||
package_data={"airo_spatial_algebra": ["py.typed"]}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,6 @@ | |
description="teleoperation functionality for manually controlling manipulators and grippers using gaming controllers etc. at the Ghent University AI and Robotics Lab", | ||
author="Thomas Lips", | ||
author_email="[email protected]", | ||
install_requires=["pygame", "click", "loguru"], | ||
extras_require={ | ||
"external": [ | ||
f"airo_typing @ file://localhost/{root_folder}/airo-typing", | ||
f"airo_spatial_algebra @ file://localhost/{root_folder}/airo-spatial-algebra", | ||
f"airo_robots @file://localhost/{root_folder}/airo-robots", | ||
] | ||
}, | ||
packages=setuptools.find_packages(), | ||
install_requires=["pygame", "click", "loguru", "airo-typing", "airo-spatial-algebra", "airo-robots"], | ||
packages=setuptools.find_packages(exclude=["test"]), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
author="Thomas Lips", | ||
author_email="[email protected]", | ||
install_requires=["numpy"], | ||
packages=["airo_typing"], | ||
packages=setuptools.find_packages(exclude=["test"]), | ||
package_data={"airo_typing": ["py.typed"]}, | ||
) |