__init__.py 451 B

1234567891011121314
  1. from .core import about_time
  2. from .features import FEATURES
  3. from .human_count import HumanCount
  4. from .human_duration import HumanDuration
  5. from .human_throughput import HumanThroughput
  6. VERSION = (4, 2, 1)
  7. __author__ = 'Rogério Sampaio de Almeida'
  8. __email__ = 'rsalmei@gmail.com'
  9. __version__ = '.'.join(map(str, VERSION))
  10. __all__ = ('__author__', '__version__', 'about_time', 'HumanCount', 'HumanDuration',
  11. 'HumanThroughput', 'FEATURES')