-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.12 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
38
39
40
41
from setuptools import setup
with open("README.md", "r") as f:
desc=f.read()
setup(
name="json-diff-cli",
version="1.0.2",
description="To display json differences on CLI",
long_description=desc,
long_description_content_type="text/markdown",
author="shivani",
keywords=["json","diff"],
license='MIT',
entry_points={
'console_scripts': [
'jdif = jdif:start',
]
},
project_urls={
"Source": "https://github.com/Shivani-20/json-diff-cli"
},
classifiers=[
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: File Formats :: JSON",
"Topic :: File Formats :: JSON :: JSON Schema",
"Topic :: Software Development :: Debuggers",
"Environment :: Console"
],
package_dir={"": "src"},
packages=["jdif"],
python_requires='>=3.8',
install_requires=[
'termcolor>=2.4.0',
'deepdiff>=7.0.1',
'charade>=1.0.3',
'pyparsing>=3.1.2'
])