|
43 | 43 | with open(path.join(here, 'RELEASE'), encoding='utf-8') as f: |
44 | 44 | release = f.read() |
45 | 45 |
|
| 46 | + |
46 | 47 | def package_files(directory): |
47 | 48 | paths = [] |
48 | 49 | for (pathhere, _, filenames) in os.walk(directory): |
@@ -94,24 +95,22 @@ def package_files(directory): |
94 | 95 | 'Programming Language :: Python :: 3.7', |
95 | 96 | 'Programming Language :: Python :: 3.8', |
96 | 97 | 'Programming Language :: Python :: 3.9', |
97 | | - ], |
| 98 | + ], |
98 | 99 |
|
99 | 100 | python_requires='>=3.6', |
100 | | - |
| 101 | + |
101 | 102 | project_urls={ |
102 | 103 | 'Documentation': 'https://petercorke.github.io/roboticstoolbox-python', |
103 | 104 | 'Source': 'https://github.com/petercorke/roboticstoolbox-python', |
104 | 105 | 'Tracker': 'https://github.com/petercorke/roboticstoolbox-python/issues', |
105 | 106 | 'Coverage': 'https://codecov.io/gh/petercorke/roboticstoolbox-python' |
106 | 107 | }, |
107 | 108 |
|
108 | | - url='https://github.com/petercorke/roboticstoolbox-python', |
109 | | - |
110 | 109 | ext_modules=[frne], |
111 | 110 |
|
112 | 111 | keywords='python robotics robotics-toolbox kinematics dynamics' \ |
113 | | - ' motion-planning trajectory-generation jacobian hessian control' \ |
114 | | - ' simulation robot-manipulator mobile-robot' |
| 112 | + ' motion-planning trajectory-generation jacobian hessian' \ |
| 113 | + ' control simulation robot-manipulator mobile-robot', |
115 | 114 |
|
116 | 115 | packages=find_packages(exclude=["tests", "examples", "notebooks"]), |
117 | 116 |
|
|
0 commit comments