Install into subdir pyi2ncommon in site-packages
[pyi2ncommon] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4
5 setup(name='pyi2ncommon',
6       version='1.1',
7       description='Intra2net library of common helper utilities',
8       long_description='Various modules used in several places within '
9                        'Intra2net code',
10       author='Intra2net AG',
11       author_email='info@intra2net.com',
12       url='http://www.intra2net.com',
13       packages=['pyi2ncommon'],
14       package_dir={'pyi2ncommon': 'src'},
15       # these files go into the srpm but not the rpm when building them using
16       # setup.py bdist_rpm
17       # however, when using build_and_install, they get installed, so leave
18       # them out (developers have source tree from git anyway)
19       #data_files=['check.sh',
20       #            'test/disc_filler_test.py', 'test/template.py',
21       #            'doc/index.rst', 'doc/modules.rst', 'doc/conf.py',
22       #            'doc/about_docu.rst'],
23       license='GPLv2 + linking exception',
24      )