From a4765dc19916f92e87915858812294b3cfb8e555 Mon Sep 17 00:00:00 2001 From: David Hadka Date: Thu, 12 Apr 2018 12:02:23 -0400 Subject: [PATCH] Change name for PyPI --- setup.py | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/setup.py b/setup.py index 42f472d4..a93763aa 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ from setuptools import setup from setuptools.command.test import test as TestCommand -from platypus import __version__ class NoseTestCommand(TestCommand): @@ -15,7 +14,7 @@ def run_tests(self): import nose nose.run_exit(argv=['nosetests']) -setup(name='Platypus', +setup(name='Platypus-Opt', version='1.0.0', # Update __init__.py if the version changes! description='Multiobjective optimization in Python', author='David Hadka', @@ -26,19 +25,4 @@ def run_tests(self): install_requires=['six'], tests_require=['nose', 'mock'], cmdclass={'test': NoseTestCommand}, - classifiers=[ - 'Development Status :: 4 - Beta', - 'Environment :: Console', - 'Intended Audience :: Education', - 'Intended Audience :: Developers', - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', - 'Operating System :: MacOS :: MacOS X', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: POSIX', - 'Programming Language :: Python', - 'Topic :: Scientific/Engineering :: Artificial Intelligence', - 'Topic :: Scientific/Engineering :: Mathematics', - 'Topic :: Software Development :: Libraries :: Python Modules', - ], ) \ No newline at end of file