-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 959 Bytes
/
setup.py
File metadata and controls
24 lines (24 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name='texttab',
packages=['texttab'],
version='0.5.4',
license='MIT',
description='Create ASCII tables that are flexible. Colours, various border styles and custom column formatters are some of the features.',
author='Owen Klan',
author_email='owen.j.klan@gmail.com',
url='https://github.com/owenjklan/texttab',
download_url='https://github.com/owenjklan/texttab/archive/refs/tags/v0.5.4.tar.gz',
keywords=['command-line', 'ascii', 'tables', 'formatters', 'extensible'],
install_requires=[
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
# Because we heavily use f-strings, a python 3.6 feature
'Programming Language :: Python :: 3.6',
],
)