]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
setup.py: remove, it's obsolete now that we have pyproject.toml
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 18 Feb 2026 00:56:13 +0000 (19:56 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 18 Feb 2026 01:14:19 +0000 (20:14 -0500)
setup.py [deleted file]

diff --git a/setup.py b/setup.py
deleted file mode 100644 (file)
index cf379f8..0000000
--- a/setup.py
+++ /dev/null
@@ -1,28 +0,0 @@
-from setuptools import setup
-
-# Stolen from the setuptools documentation.
-def read(fname):
-    from os.path import dirname, join
-    return open(join(dirname(__file__), fname)).read()
-
-# Don't list "test" in packages, because we don't want it installed.
-setup(
-    name         = 'dunshire',
-    version      = '0.1.3',
-    author       = 'Michael Orlitzky',
-    author_email = 'michael@orlitzky.com',
-    url          = 'http://michael.orlitzky.com/code/dunshire/index.xhtml',
-    keywords     = 'game theory, cone programming, optimization',
-    packages     = ['dunshire'],
-    description  = 'A library for solving linear games over symmetric cones',
-    long_description = read('doc/README.rst'),
-    license      = 'AGPLv3+',
-    install_requires = [ 'cvxopt >= 1.1.8' ],
-    test_suite = 'test.build_suite',
-    classifiers=[
-        'Development Status :: 3 - Alpha',
-        'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
-        'Programming Language :: Python :: 3',
-        'Intended Audience :: Science/Research'
-    ]
-)