File: __about__.py

package info (click to toggle)
python-readtime 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 246; makefile: 20; sh: 5
file content (10 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
__title__ = 'readtime'
__description__ = 'Calculates the time some text takes the average human to ' \
                  'read, based on Medium\'s read time forumula'
__url__ = 'https://github.com/alanhamlett/readtime'
__version_info__ = ('3', '0', '0')
__version__ = '.'.join(__version_info__)
__author__ = 'Alan Hamlett'
__author_email__ = 'alan.hamlett@gmail.com'
__license__ = 'BSD'
__copyright__ = 'Copyright 2016 Alan Hamlett'