mirror of https://github.com/KLayout/klayout.git
Added __init__.py file to Python package.
This commit is contained in:
parent
8c63069697
commit
9dcfa140c3
14
setup.py
14
setup.py
|
|
@ -294,10 +294,12 @@ rdb = Extension(config.root + '.rdb',
|
|||
# ------------------------------------------------------------------
|
||||
# Core setup function
|
||||
|
||||
setup (name = config.root,
|
||||
version = config.version(),
|
||||
description = 'KLayout standalone Python package',
|
||||
author = 'Matthias Koefferlein',
|
||||
author_email = 'matthias@klayout.de',
|
||||
ext_modules = [ _tl, _gsi, _pya, _db, _rdb ] + db_plugins + [ tl, db, rdb ])
|
||||
setup(name = config.root,
|
||||
version = config.version(),
|
||||
description = 'KLayout standalone Python package',
|
||||
author = 'Matthias Koefferlein',
|
||||
author_email = 'matthias@klayout.de',
|
||||
packages = [ config.root ],
|
||||
package_dir = { config.root: 'src/pymod/distutils_src' },
|
||||
ext_modules = [ _tl, _gsi, _pya, _db, _rdb ] + db_plugins + [ tl, db, rdb ])
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
# klayout library definition file
|
||||
|
||||
__all__ = [ "tl", "db", "lay", "rdb" ]
|
||||
|
||||
Loading…
Reference in New Issue