-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (27 loc) · 1012 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
# -*- coding: utf-8 -*-
from setuptools import setup
VERSION = '0.4'
PKG_NAME = 'json-traverse'
setup(
name=PKG_NAME,
packages=[PKG_NAME.replace("-", "")],
version=VERSION,
description='Query complex JSON structures using a simple query syntax.',
author=u'Emil Stenström',
author_email='[email protected]',
url='https://github.com/EmilStenstrom/{}/'.format(PKG_NAME),
download_url='https://github.com/EmilStenstrom/{}/archive/{}.zip'.format(PKG_NAME, VERSION),
install_requires=[],
keywords=['json', 'query', 'tree', 'parser', 'json-query'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
)