diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2018-07-15 22:40:49 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2018-07-15 22:51:17 +0200 |
commit | 85388901cf6a69659569ad751767fd7108b25a3c (patch) | |
tree | a004b01dfd378841c2ee473023313ade212118d7 /deps/jsonpath/setup.py | |
parent | 07a451e1402cf8a7c24cf6196d541d304f5dcff2 (diff) |
Rewrite of bash system
+ Implemented new dashboard menu
+ some fixes for db_assembler
+ new module installation process with version check via json files
+ some fixes to modules installer
+ implemented simple crossplatform worldserver and authserver restarters
+ new compiler script
+ client data downloader (beta)
+ various other fixes
Diffstat (limited to 'deps/jsonpath/setup.py')
-rw-r--r-- | deps/jsonpath/setup.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/deps/jsonpath/setup.py b/deps/jsonpath/setup.py new file mode 100644 index 0000000000..df9863f921 --- /dev/null +++ b/deps/jsonpath/setup.py @@ -0,0 +1,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='JSONPath.sh', + scripts=[ + 'JSONPath.sh', + ], + version='0.0.14', + description="JSONPath implementation written in Bash", + long_description="", + author='Mark Clarkson', + author_email='mark.clarkson@smorg.co.uk', + url='https://github.com/mclarkson/JSONPath.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", + ], +) |