X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;fp=setup.py;h=8e81428eb6ca7e025d20070681c16aa692cde4c2;hb=bdb596b84a06d0c97e39d42586a51fc36ba44186;hp=0000000000000000000000000000000000000000;hpb=21a2eb9a647a48c0e94d02c60ef8785c4ea35f7b;p=dunshire.git diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8e81428 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup + +setup( + name = 'dunshire', + version = '0.0.1', + author = 'Michael Orlitzky', + author_email = 'michael@orlitzky.com', + url = 'http://michael.orlitzky.com/code/dunshire.php', + packages = ['dunshire'], + description = 'A library for solving linear (cone) games', + license = 'doc/LICENSE', + install_requires = [ 'cvxopt >= 1.1.8' ], + test_suite = 'test.build_suite' +)