Skip to content

Commit 300a47a

Browse files
committed
Lower case distribution name in setup.py.
1 parent e3d679f commit 300a47a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
description = "An implementation of a planar human gait model."
2222

2323
setup(
24-
name='Gait2D',
24+
name='gait2d',
2525
author='Jason K. Moore',
2626
author_email='[email protected]',
2727
version=__version__,
@@ -30,13 +30,13 @@
3030
license='LICENSE.txt',
3131
packages=find_packages(),
3232
install_requires=[
33-
'sympy',
3433
'pydy',
3534
'pyyaml',
35+
'sympy',
3636
],
3737
extras_require={
3838
'examples': ['numpy', 'scipy', 'cython'],
39-
'doc': ['sphinx>=1.1.0', 'numpydoc>=0.4'],
39+
'doc': ['sphinx', 'numpydoc'],
4040
},
4141
tests_require=['pytest'],
4242
ext_modules=cythonize([extension]),
@@ -48,6 +48,7 @@
4848
'Programming Language :: Python :: 3.9',
4949
'Programming Language :: Python :: 3.10',
5050
'Programming Language :: Python :: 3.11',
51+
'Programming Language :: Python :: 3.12',
5152
'Topic :: Scientific/Engineering :: Physics',
5253
],
5354
)

0 commit comments

Comments
 (0)