8000 update setup, bump version · Zyszu200/robotics-toolbox-python@cf35a8c · GitHub
[go: up one dir, main page]

Skip to content

Commit cf35a8c

Browse files
committed
update setup, bump version
1 parent 92489f8 commit cf35a8c

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

setup.py

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
req = [
1313
"numpy>=1.17.4",
14-
"spatialmath-python>=0.11",
15-
"spatialgeometry>=0.2.0",
14+
"spatialmath-python~=1.0.0",
15+
"spatialgeometry~=1.0.0",
1616
"pgraph-python",
1717
"scipy",
1818
"matplotlib",
1919
"ansitable",
20-
"swift-sim>=0.10.0",
20+
"swift-sim~=1.0.0",
2121
"rtb-data",
2222
"progress",
2323
]
@@ -90,19 +90,9 @@ def package_files(directory):
9090
# ],
9191
)
9292

93-
94-
# class build_ext_subclass(build_ext_with_blas):
95-
# def build_extensions(self):
96-
# compiler = self.compiler.compiler_type
97-
# for e in self.extensions:
98-
# e.extra_compile_args += ["-Ofast", "-fopenmp", "-march=native", "-std=c99"]
99-
# e.extra_link_args += ["-fopenmp"]
100-
# build_ext_with_blas.build_extensions(self)
101-
102-
10393
setup(
10494
name="roboticstoolbox-python",
105-
version="0.11.0",
95+
version="1.0.0",
10696
description="A Python library for robotic education and research",
10797
long_description=long_description,
10898
long_description_content_type="text/markdown",
@@ -113,7 +103,7 @@ def package_files(directory):
113103
# 3 - Alpha
114104
# 4 - Beta
115105
# 5 - Production/Stable
116-
"Development Status :: 4 - Beta",
106+
"Development Status :: 5 - Production/Stable",
117107
# Indicate who your project is intended for
118108
"Intended Audience :: Developers",
119109
# Pick your license as you wish (should match "license" above)
@@ -124,6 +114,7 @@ def package_files(directory):
124114
"Programming Language :: Python :: 3.7",
125115
"Programming Language :: Python :: 3.8",
126116
"Programming Language :: Python :: 3.9",
117+
"Programming Language :: Python :: 3.10",
127118
],
128119
python_requires=">=3.6",
129120
project_urls={
@@ -139,11 +130,11 @@ def package_files(directory):
139130
" control simulation robot-manipulator mobile-robot",
140131
packages=find_packages(exclude=["tests", "notebooks"]),
141132
package_data={"roboticstoolbox": extra_files},
142-
scripts = [
133+
scripts=[
143134
"roboticstoolbox/bin/rtbtool",
144135
],
145-
entry_points = {
146-
"console_scripts" : [
136+
entry_points={
137+
"console_scripts": [
147138
"eigdemo=roboticstoolbox.examples.eigdemo:main",
148139
"tripleangledemo=roboticstoolbox.examples.tripleangledemo",
149140
"twistdemo=roboticstoolbox.examples.twistdemo:main",

0 commit comments

Comments
 (0)
0