This website requires JavaScript.
Explore
Help
Register
Sign In
luke
/
klayout
mirror of
https://github.com/KLayout/klayout.git
Watch
1
Star
0
Fork
You've already forked klayout
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
ad775413f3
klayout
/
src
/
pymod
/
__init__.py.noqt
6 lines
83 B
Plaintext
Raw
Normal View
History
Unescape
Escape
WIP: include __init__.py generation in .pro files.
2018-06-03 13:05:12 +02:00
Enabled minimum build configuration Minimum build configuration is without Qt, Ruby, curl and expat. Only Python is required. This commit also provides a functional (through polling) Qt-less HTTP implementation through libcurl if enabled.
2018-07-15 18:54:29 +02:00
# klayout library definition file
WIP: include __init__.py generation in .pro files.
2018-06-03 13:05:12 +02:00
WIP: added lib module to qmake-based python module build This works: import klayout.db import klayout.lib print(klayout.db.Library.library_names()) # says ["Basic"] Also works: from klayout import * Does not work: # import klayout.lib needs to be done before the libraries # are used initially import klayout.db print(klayout.db.Library.library_names()) # says [] import klayout.lib print(klayout.db.Library.library_names()) # says []
2019-04-03 01:07:22 +02:00
__all__ = [ "tl", "db", "lib", "lay", "rdb" ]
WIP: include __init__.py generation in .pro files.
2018-06-03 13:05:12 +02:00