-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (32 loc) · 1.11 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
try:
from setuptools import setup #Py2
except ImportError:
from distutils.core import setup #Py3
import sys
install_requires = []
# if sys.version_info < (3, 4):
# install_requires.append('enum34')
setup(
name='bashspy',
version='0.1',
url='https://github.com/sarvi/bashspy.git',
license='GPLv3+',
author='Sarvi Shanmugham',
author_email='[email protected]',
description='Python parser for bash using the open source spy package',
long_description='''Python parser for bash using the open source spy package.
See https://github.com/sarvi/bashspy/blob/master/README.md for more info.''',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: System Shells',
'Topic :: Text Processing',
],
install_requires=install_requires,
packages=['bashspy'],
)