varidock

VariDock - A Python package for variable docking and management.

This module provides the main entry point for the VariDock package, which offers tools for flexible variable binding and dock management.

Example:
>>> import varidock
>>> # Use varidock functionality here
Attributes:
  • __version__ (str): The current version of the package.
  • __author__ (str): The package author.
 1""" 
 2VariDock - A Python package for variable docking and management.
 3
 4This module provides the main entry point for the VariDock package,
 5which offers tools for flexible variable binding and dock management.
 6
 7Example:
 8    >>> import varidock
 9    >>> # Use varidock functionality here
10
11Attributes:
12    __version__ (str): The current version of the package.
13    __author__ (str): The package author.
14
15
16"""
17
18__version__ = "0.1.0"
19__author__ = "abdolla"
20__all__ = []