| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- # setup.py
- # Install script for ConfigObj
- # Copyright (C) 2005-2014:
- # (name) : (email)
- # Michael Foord: fuzzyman AT voidspace DOT org DOT uk
- # Mark Andrews: mark AT la-la DOT com
- # Nicola Larosa: nico AT tekNico DOT net
- # Rob Dennis: rdennis AT gmail DOT com
- # Eli Courtwright: eli AT courtwright DOT org
- # This software is licensed under the terms of the BSD license.
- # http://opensource.org/licenses/BSD-3-Clause
- import os
- import sys
- from distutils.core import setup
- # a simple import wouldn't work if we moved towards a package with __init__
- from _version import __version__
- if sys.version_info < (2, 6):
- print('for python versions < 2.6 use configobj '
- 'version 4.7.2')
- sys.exit(1)
- __here__ = os.path.abspath(os.path.dirname(__file__))
- VERSION = __version__
- NAME = 'configobj'
- MODULES = 'configobj', 'validate', '_version'
- DESCRIPTION = 'Config file reading, writing and validation.'
- URL = 'https://github.com/DiffSK/configobj'
- LONG_DESCRIPTION = """**ConfigObj** is a simple but powerful config file reader and writer: an *ini
- file round tripper*. Its main feature is that it is very easy to use, with a
- straightforward programmer's interface and a simple syntax for config files.
- It has lots of other features though :
- * Nested sections (subsections), to any level
- * List values
- * Multiple line values
- * Full Unicode support
- * String interpolation (substitution)
- * Integrated with a powerful validation system
- - including automatic type checking/conversion
- - and allowing default values
- - repeated sections
- * All comments in the file are preserved
- * The order of keys/sections is preserved
- * Powerful ``unrepr`` mode for storing/retrieving Python data-types
- | Release 5.0.6 improves error messages in certain edge cases
- | Release 5.0.5 corrects a unicode-bug that still existed in writing files
- | Release 5.0.4 corrects a unicode-bug that still existed in reading files after
- | fixing lists of string in 5.0.3
- | Release 5.0.3 corrects errors related to the incorrectly handling unicode
- | encoding and writing out files
- | Release 5.0.2 adds a specific error message when trying to install on
- | Python versions older than 2.5
- | Release 5.0.1 fixes a regression with unicode conversion not happening
- | in certain cases PY2
- | Release 5.0.0 updates the supported Python versions to 2.6, 2.7, 3.2, 3.3
- | and is otherwise unchanged
- | Release 4.7.2 fixes several bugs in 4.7.1
- | Release 4.7.1 fixes a bug with the deprecated options keyword in
- | 4.7.0.
- | Release 4.7.0 improves performance adds features for validation and
- | fixes some bugs."""
- CLASSIFIERS = [
- 'Development Status :: 6 - Mature',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.2',
- 'Programming Language :: Python :: 3.3',
- 'Operating System :: OS Independent',
- 'Topic :: Software Development :: Libraries',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- ]
- AUTHOR = 'Rob Dennis, Eli Courtwright (Michael Foord & Nicola Larosa original maintainers)'
- AUTHOR_EMAIL = 'rdennis+configobj@gmail.com, eli@courtwright.org, fuzzyman@voidspace.co.uk, nico@tekNico.net'
- KEYWORDS = "config, ini, dictionary, application, admin, sysadmin, configuration, validation".split(', ')
- setup(name=NAME,
- version=VERSION,
- install_requires=['six'],
- description=DESCRIPTION,
- long_description=LONG_DESCRIPTION,
- author=AUTHOR,
- author_email=AUTHOR_EMAIL,
- url=URL,
- py_modules=MODULES,
- classifiers=CLASSIFIERS,
- keywords=KEYWORDS
- )
|