Add case-insensitive replace() behavior to str-inheriting CnfName
[pyi2ncommon] / setup.py
1 #!/usr/bin/env python
2
3 # The software in this package is distributed under the GNU General
4 # Public License version 2 (with a special exception described below).
5 #
6 # A copy of GNU General Public License (GPL) is included in this distribution,
7 # in the file COPYING.GPL.
8 #
9 # As a special exception, if other files instantiate templates or use macros
10 # or inline functions from this file, or you compile this file and link it
11 # with other works to produce a work based on this file, this file
12 # does not by itself cause the resulting work to be covered
13 # by the GNU General Public License.
14 #
15 # However the source code for this file must still be made available
16 # in accordance with section (3) of the GNU General Public License.
17 #
18 # This exception does not invalidate any other reasons why a work based
19 # on this file might be covered by the GNU General Public License.
20 #
21 # Copyright (c) 2016-2022 Intra2net AG <info@intra2net.com>
22
23 # For packaging pyi2ncommon into an rpm, use make_dist.py
24
25 from distutils.core import setup
26
27 setup(name='pyi2ncommon',
28       version='1.7.0',  # keep in sync with spec file and doc/conf.py
29       description='Intra2net library of common python helper utilities',
30       long_description='Helper modules for Intra2net python code that are '
31                        'used in several places and/or are of '
32                        'general interest',
33       author='Intra2net AG',
34       author_email='info@intra2net.com',
35       url='http://www.intra2net.com',
36       packages=['pyi2ncommon', 'pyi2ncommon.cnfline', 'pyi2ncommon.cnfvar'],
37       package_dir={'pyi2ncommon': 'src'},
38       license_files=('COPYING.GPL', 'Linking-Exception.txt'),
39       license='GPLv2 + linking exception',
40       classifiers=[
41           "Programming Language :: Python :: 3",
42           "Operating System :: OS Independent",
43       ],
44       )