11
11
12
12
req = [
13
13
"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" ,
16
16
"pgraph-python" ,
17
17
"scipy" ,
18
18
"matplotlib" ,
19
19
"ansitable" ,
20
- "swift-sim>=0.10 .0" ,
20
+ "swift-sim~=1.0 .0" ,
21
21
"rtb-data" ,
22
22
"progress" ,
23
23
]
@@ -90,19 +90,9 @@ def package_files(directory):
90
90
# ],
91
91
)
92
92
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
-
103
93
setup (
104
94
name = "roboticstoolbox-python" ,
105
- version = "0.11 .0" ,
95
+ version = "1.0 .0" ,
106
96
description = "A Python library for robotic education and research" ,
107
97
long_description = long_description ,
108
98
long_description_content_type = "text/markdown" ,
@@ -113,7 +103,7 @@ def package_files(directory):
113
103
# 3 - Alpha
114
104
# 4 - Beta
115
105
# 5 - Production/Stable
116
- "Development Status :: 4 - Beta " ,
106
+ "Development Status :: 5 - Production/Stable " ,
117
107
# Indicate who your project is intended for
118
108
"Intended Audience :: Developers" ,
119
109
# Pick your license as you wish (should match "license" above)
@@ -124,6 +114,7 @@ def package_files(directory):
124
114
"Programming Language :: Python :: 3.7" ,
125
115
"Programming Language :: Python :: 3.8" ,
126
116
"Programming Language :: Python :: 3.9" ,
117
+ "Programming Language :: Python :: 3.10" ,
127
118
],
128
119
python_requires = ">=3.6" ,
129
120
project_urls = {
@@ -139,11 +130,11 @@ def package_files(directory):
139
130
" control simulation robot-manipulator mobile-robot" ,
140
131
packages = find_packages (exclude = ["tests" , "notebooks" ]),
141
132
package_data = {"roboticstoolbox" : extra_files },
142
- scripts = [
133
+ scripts = [
143
134
"roboticstoolbox/bin/rtbtool" ,
144
135
],
145
- entry_points = {
146
- "console_scripts" : [
136
+ entry_points = {
137
+ "console_scripts" : [
147
138
"eigdemo=roboticstoolbox.examples.eigdemo:main" ,
148
139
"tripleangledemo=roboticstoolbox.examples.tripleangledemo" ,
149
140
"twistdemo=roboticstoolbox.examples.twistdemo:main" ,
0 commit comments