File: __init__.py

package info (click to toggle)
turing 0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,340 kB
  • sloc: python: 106,582; xml: 101; makefile: 53; sh: 29
file content (12 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
"""
This packages contains some pyqode specific pygments color schemes:
    - qt (inpired by the QtCreator color scheme)
    - darcula (inspired from the darcula them of PyCharm)
"""
from .qt import QtStyle
from .darcula import DarculaStyle

__all__ = [
    'QtStyle',
    'DarculaStyle'
]