-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
54 lines (37 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
setup(
name='dollar-ref',
version='0.1.3',
description='JSON Reference Resolution',
long_description="Both a command line tool and a library for resolving JSON references,"
"which let's you easily split your JSON or YAML files and then merge on demand.",
url='https://github.com/bagrat/dollar-ref',
author='Bagrat Aznauryan',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
keywords='json schema ref reference openapi yaml resolve',
packages=['dollar_ref'],
install_requires=[
'PyYAML',
'termcolor'
],
entry_points={
'console_scripts': [
'dref=dollar_ref.console:main'
]
}
)