mirror of
https://github.com/KevinMidboe/tableprint.git
synced 2025-10-29 18:00:16 +00:00
Using metadata.py to manage version number and other metadata
This commit is contained in:
18
metadata.py
Normal file
18
metadata.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Version info
|
||||
__name__ = 'tableprint'
|
||||
__version__ = '0.6.1'
|
||||
__license__ = 'MIT'
|
||||
|
||||
# Project description(s)
|
||||
__description__ = 'Pretty console printing of tabular data'
|
||||
__long_description__ = '''Formatted console printing of tabular data.
|
||||
tableprint lets you easily print formatted tables of data.
|
||||
Unlike other modules, you can print single rows of data at a time
|
||||
(useful for printing ongoing computation results).'''
|
||||
|
||||
# The project's main homepage.
|
||||
__url__ = 'https://github.com/nirum/tableprint'
|
||||
|
||||
# Author details
|
||||
__author__ = 'Niru Maheswaranathan'
|
||||
__author_email__ = 'niru@fastmail.com'
|
||||
Reference in New Issue
Block a user