Mon, 15 Jul 2013 16:50:38 +0200
Add credit to ChangeLog
andy@26 | 1 | #! /usr/bin/env python |
andy@26 | 2 | |
andy@106 | 3 | from distutils.core import setup |
andy@26 | 4 | |
andy@26 | 5 | ## Setup definition |
andy@26 | 6 | import pyslha |
andy@52 | 7 | __doc__ = pyslha.__doc__ |
andy@52 | 8 | |
andy@26 | 9 | setup(name = 'pyslha', |
andy@26 | 10 | version = pyslha.__version__, |
andy@26 | 11 | py_modules = ["pyslha"], |
andy@26 | 12 | scripts = ["slhaplot", "slha2isawig", "isawig2slha"], |
andy@183 | 13 | install_requires = ["tex2pix >=0.1.5"], |
andy@53 | 14 | author = 'Andy Buckley', |
andy@26 | 15 | author_email = 'andy@insectnation.org', |
andy@104 | 16 | url = 'http://www.insectnation.org/projects/pyslha', |
andy@26 | 17 | description = 'Parsing, manipulating, and visualising SUSY Les Houches Accord data', |
andy@26 | 18 | long_description = __doc__, |
andy@26 | 19 | keywords = 'supersymmetry susy slha simulation mass decay hep physics particle', |
andy@162 | 20 | license = 'GPL') |