Merge pull request #1 from jarvisschultz/nxrmaster

Python packaging cleanup
This commit is contained in:
HuanWeng 2018-08-15 13:49:48 -05:00 committed by GitHub
commit 92206c10ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.pyc
*build/
*dist/
*.egg-info*

View File

@ -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',