-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
executable file
·45 lines (43 loc) · 1.73 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
from distutils.core import setup
try:
# Setuptools only needed for building the package
import setuptools # noqa
except ImportError:
pass
setup(name="tabview",
version="1.4.4",
description="A curses command-line CSV and list (tabular data) viewer",
long_description=open('README.rst', 'rb').read().decode('utf-8'),
author="Scott Hansen",
author_email="tech@firecat53.net",
url="https://github.com/Tabviewer/tabview",
download_url="https://github.com/Tabviewer/tabview/tarball/1.4.4",
packages=['tabview'],
scripts=['bin/tabview'],
package_data={'tabview': ['README.rst']},
data_files=[('share/doc/tabview',
['README.rst', 'LICENSE.txt', 'CHANGELOG.rst'])],
test_suite='test/test_tabview.py',
license="MIT",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Console :: Curses',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Office/Business :: Financial :: Spreadsheet',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Utilities',
],
keywords=("data spreadsheet view viewer console "
"curses csv comma separated values"),
)