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
f57f1cc228
klayout
/
src
/
pymod
/
__init__.py.qtless
5 lines
75 B
Plaintext
Raw
Normal View
History
Unescape
Escape
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: 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", "rdb" ]
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