Skip to content

Commit

Permalink
Change name for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Apr 12, 2018
1 parent eab0d03 commit a4765dc
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from setuptools import setup
from setuptools.command.test import test as TestCommand
from platypus import __version__

class NoseTestCommand(TestCommand):

Expand All @@ -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',
Expand All @@ -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',
],
)

0 comments on commit a4765dc

Please sign in to comment.