From 1cb560fdce89c46d664a5b5bfb2a8b3551eae715 Mon Sep 17 00:00:00 2001 From: Jarvis Schultz Date: Tue, 14 Aug 2018 15:45:39 -0500 Subject: [PATCH] Python packaging cleanup + Added gitignore + Cleaned up mixed tabs/spaces in setup.py --- .gitignore | 4 ++++ packages/Python/setup.py | 14 +++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8709cc7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.pyc +*build/ +*dist/ +*.egg-info* diff --git a/packages/Python/setup.py b/packages/Python/setup.py index 52b4ba4..f30a845 100644 --- a/packages/Python/setup.py +++ b/packages/Python/setup.py @@ -14,14 +14,14 @@ setup( packages=['modern_robotics'], classifiers=[ "Development Status :: 3 - Alpha", - "Intended Audience :: Education", - "Intended Audience :: Science/Research", + "Intended Audience :: Education", + "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", - "Natural Language :: English", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 3", - "Topic :: Education", - "Topic :: Scientific/Engineering", + "Natural Language :: English", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + "Topic :: Education", + "Topic :: Scientific/Engineering", ], install_requires=[ 'numpy',