-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 1000 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 1000 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
25
26
27
28
#!/usr/bin/env python3
from setuptools import setup
from vsplunk import vsplunk
setup(name='vsplunk',
version=vsplunk.__version__,
install_requires=['splunk-sdk>=1.6.11',
'visidata>=1.5.2'],
description='Splunk App for Visidata',
author=vsplunk.__author__,
url='https://www.github.com/layertwo/vsplunk',
python_requires='>=3.6',
scripts=['bin/vsplunk'],
packages=['vsplunk'],
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Console :: Curses',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: Log Analysis',
'Topic :: Security'
],
keywords=('splunk tabular data spreadsheet terminal curses visidata'))