Drop any None and thus previously required default values
[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#
d31714a0 21# Copyright (c) 2016-2022 Intra2net AG <info@intra2net.com>
f365f614 22
ac74ff48
CH
23# For packaging pyi2ncommon into an rpm, use make_dist.py
24
5565687d
CH
25from distutils.core import setup
26
27setup(name='pyi2ncommon',
846fde6f 28 version='1.7.0', # keep in sync with spec file and doc/conf.py
d344c1f6
CH
29 description='Intra2net library of common python helper utilities',
30 long_description='Helper modules for Intra2net python code that are '
f01d9aef
CH
31 'used in several places and/or are of '
32 'general interest',
5565687d
CH
33 author='Intra2net AG',
34 author_email='info@intra2net.com',
35 url='http://www.intra2net.com',
13abc7d0 36 packages=['pyi2ncommon', 'pyi2ncommon.cnfvar'],
b0a3eba2 37 package_dir={'pyi2ncommon': 'src'},
ac74ff48 38 license_files=('COPYING.GPL', 'Linking-Exception.txt'),
5f03b995 39 license='GPLv2 + linking exception',
2b141a0a
CH
40 classifiers=[
41 "Programming Language :: Python :: 3",
42 "Operating System :: OS Independent",
43 ],
7f66ff3e 44 )