1e3f6a1900be661706c3f381589a69c0de34d0d1
[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-2018 Intra2net AG <info@intra2net.com>
22
23 from distutils.core import setup
24
25 setup(name='pyi2ncommon',
26       version='1.6.4',
27       description='Intra2net library of common python helper utilities',
28       long_description='Helper modules for Intra2net python code that are '
29                        'used in several places and/or are of '
30                        'general interest',
31       author='Intra2net AG',
32       author_email='info@intra2net.com',
33       url='http://www.intra2net.com',
34       packages=['pyi2ncommon', 'pyi2ncommon.cnfline'],
35       package_dir={'pyi2ncommon': 'src'},
36       # these files go into the srpm but not the rpm when building them using
37       # setup.py bdist_rpm
38       # however, when using build_and_install, they get installed, so leave
39       # them out (developers have source tree from git anyway)
40       #data_files=['check.sh',
41       #            'templates/template.py', 'templates/test_template.py',
42       #            'doc/index.rst', 'doc/modules.rst', 'doc/conf.py',
43       #            'doc/about_docu.rst'],
44       license='GPLv2 + linking exception',
45       classifiers=[
46           "Programming Language :: Python :: 3",
47           "Operating System :: OS Independent",
48       ],
49      )