Increase version to 1.6.5
[pyi2ncommon] / setup.py
CommitLineData
5565687d
CH
1#!/usr/bin/env python
2
f365f614
CH
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
5565687d
CH
23from distutils.core import setup
24
25setup(name='pyi2ncommon',
d15bc075 26 version='1.6.5',
d344c1f6
CH
27 description='Intra2net library of common python helper utilities',
28 long_description='Helper modules for Intra2net python code that are '
f01d9aef
CH
29 'used in several places and/or are of '
30 'general interest',
5565687d
CH
31 author='Intra2net AG',
32 author_email='info@intra2net.com',
33 url='http://www.intra2net.com',
dbf195a8 34 packages=['pyi2ncommon', 'pyi2ncommon.cnfline'],
b0a3eba2 35 package_dir={'pyi2ncommon': 'src'},
20b64375
CH
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',
ff6b1fe5 41 # 'templates/template.py', 'templates/test_template.py',
20b64375
CH
42 # 'doc/index.rst', 'doc/modules.rst', 'doc/conf.py',
43 # 'doc/about_docu.rst'],
5f03b995 44 license='GPLv2 + linking exception',
2b141a0a
CH
45 classifiers=[
46 "Programming Language :: Python :: 3",
47 "Operating System :: OS Independent",
48 ],
5565687d 49 )