setup.py 933 B

12345678910111213141516171819202122232425262728293031
  1. # setup.py
  2. # Install script for ConfigObj
  3. # Copyright (C) 2005-2009 Michael Foord, Mark Andrews, Nicola Larosa
  4. # E-mail: fuzzyman AT voidspace DOT org DOT uk
  5. # mark AT la-la DOT com
  6. # nico AT tekNico DOT net
  7. # This software is licensed under the terms of the BSD license.
  8. # http://www.voidspace.org.uk/python/license.shtml
  9. import sys
  10. from distutils.core import setup
  11. from configobj import __version__ as VERSION
  12. NAME = 'configobj'
  13. MODULES = 'configobj', 'validate'
  14. DESCRIPTION = 'Config file reading, writing, and validation.'
  15. URL = 'http://www.voidspace.org.uk/python/configobj.html'
  16. LICENSE = 'BSD'
  17. PLATFORMS = ["Platform Independent"]
  18. setup(name= NAME,
  19. version= VERSION,
  20. description= DESCRIPTION,
  21. license = LICENSE,
  22. platforms = PLATFORMS,
  23. author= 'Michael Foord & Nicola Larosa',
  24. author_email= 'fuzzyman@voidspace.org.uk',
  25. url= URL,
  26. py_modules = MODULES,
  27. )