Python packaging cleanup
+ Added gitignore + Cleaned up mixed tabs/spaces in setup.py
This commit is contained in:
parent
1b78cb541a
commit
1cb560fdce
|
|
@ -0,0 +1,4 @@
|
||||||
|
*.pyc
|
||||||
|
*build/
|
||||||
|
*dist/
|
||||||
|
*.egg-info*
|
||||||
|
|
@ -14,14 +14,14 @@ setup(
|
||||||
packages=['modern_robotics'],
|
packages=['modern_robotics'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
"Intended Audience :: Education",
|
"Intended Audience :: Education",
|
||||||
"Intended Audience :: Science/Research",
|
"Intended Audience :: Science/Research",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Natural Language :: English",
|
"Natural Language :: English",
|
||||||
"Programming Language :: Python :: 2",
|
"Programming Language :: Python :: 2",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Topic :: Education",
|
"Topic :: Education",
|
||||||
"Topic :: Scientific/Engineering",
|
"Topic :: Scientific/Engineering",
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy',
|
'numpy',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue