File: __init__.py

package info (click to toggle)
python-weblogo 3.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,700 kB
  • sloc: xml: 14,455; python: 10,384; sh: 140; makefile: 58
file content (12 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
from pkg_resources import DistributionNotFound, get_distribution

try:
    __version__: str = get_distribution(__name__).version
except DistributionNotFound:  # pragma: no cover
    __version__ = "?.?.?"


from .logo import *  # noqa: F401, F403
from .logo_formatter import *  # noqa: F401, F403
from .seq import *  # noqa: F401, F403
from .seq_io import *  # noqa: F401, F403