-
Notifications
You must be signed in to change notification settings - Fork 264
/
setup.py
31 lines (28 loc) · 960 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='JSON.sh',
scripts=[
'JSON.sh',
],
version='0.3.2',
description="JSON parser written in shell",
long_description="",
author='Dominic Tarr (http://bit.ly/dominictarr)',
author_email='dominic.tarr@gmail.com',
url='https://github.com/dominictarr/JSON.sh',
classifiers=[
"Programming Language :: Unix Shell",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
],
)