μHAL (v2.6.5)
Part of the IPbus software repository
setupTemplate.py
Go to the documentation of this file.
1 import os, sys
2 from distutils.core import setup
3 from os.path import join
4 
5 _rpmVersion='__version__'
6 _name='__packagename__'
7 _author='__author__'
8 _author_email='__author_email__'
9 _description='__description__'
10 _url='__url__'
11 _packages=__python_packages__
12 _scripts=__scripts__
13 
14 
15 setup(name=_name,
16  version = _rpmVersion,
17  description = _description,
18  author = _author,
19  author_email = _author_email,
20  url = _url,
21  license = 'GPLv3',
22 
23  packages = _packages,
24  package_dir = {'' : ''},
25  package_data = dict((pkg,['*.so']) for pkg in _packages),
26  scripts = _scripts
27  )
28