-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into improve-urdf-loading
- Loading branch information
Showing
50 changed files
with
287 additions
and
169 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,7 @@ notebooks/*/.ipynb_* | |
.sass-cache/ | ||
src/*.egg-info/ | ||
*.odg | ||
.pytest_cache | ||
*.egg-info | ||
*.ipynb_checkpoints | ||
.idea |
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
install: | ||
- pip install . | ||
script: cd tests/ikpy && ./tests.sh | ||
- pip install .[plot] | ||
- pip install pytest | ||
script: cd tests && ./tests.sh | ||
cache: pip | ||
dist: trusty | ||
sudo: false |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
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 |
---|---|---|
@@ -1,20 +1,31 @@ | ||
#!/usr/bin/env python | ||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
import os | ||
|
||
setup(name='ikpy', | ||
version='2.2.3', | ||
author="Pierre Manceron", | ||
description="An inverse kinematics library aiming performance and modularity", | ||
url="https://github.com/Phylliade/ikpy", | ||
license="GNU GENERAL PUBLIC LICENSE Version 3", | ||
packages=['ikpy'], | ||
package_dir={'': 'src'}, | ||
setup_requires=['numpy'], | ||
install_requires=['numpy', 'scipy', 'sympy', "matplotlib"], | ||
# TODO: Move maptlotlib to extra_requires | ||
classifiers=[ | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
) | ||
|
||
def get_version(): | ||
version = {} | ||
with open(os.path.join(os.path.dirname(__file__), "src/ikpy/_version.py")) as fp: | ||
exec(fp.read(), version) | ||
return version["__version__"] | ||
|
||
|
||
setup( | ||
name='ikpy', | ||
version=get_version(), | ||
author="Pierre Manceron", | ||
description="An inverse kinematics library aiming performance and modularity", | ||
url="https://github.com/Phylliade/ikpy", | ||
license="GNU GENERAL PUBLIC LICENSE Version 3", | ||
packages=find_packages("src", exclude=("tests", "docs")), | ||
package_dir={'': 'src'}, | ||
setup_requires=['numpy'], | ||
install_requires=['numpy', 'scipy', 'sympy'], | ||
extras_require={ | ||
'plot': ["matplotlib"], | ||
}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
]) |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
from . import chain | ||
from ._version import __version__ |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
__version__ = '2.2.3' | ||
|
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
Oops, something went wrong.