-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (35 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (35 loc) · 1.2 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
""" A simple JSON diff module to diff JSON object.
See:
https://github.com/xrdavies/jsondiff
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
import jsondiff
here = path.abspath(path.dirname(__file__))
setup(
name='jsondiff',
version=jsondiff.__version__,
description='A simple JSON diff module to diff JSON object',
url='https://github.com/xrdavies/jsondiff',
author='Rui Xie',
author_email='xrdavies@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
keywords='json diff compare',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=['jsondiff',],
install_requires=[],
# List additional groups of dependencies here
extras_require={},
)