File: __init__.py

package info (click to toggle)
python-thinc 8.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,804 kB
  • sloc: python: 15,818; javascript: 1,554; ansic: 342; makefile: 20; sh: 13
file content (13 lines) | stat: -rw-r--r-- 214 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# Necessary for some side-effects in Cython. Not sure I understand.
import numpy

from .about import __version__
from .config import registry


# fmt: off
__all__ = [
    "registry",
    "__version__",
]
# fmt: on