-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
31 lines (29 loc) · 836 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
30
31
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from os.path import join as pjoin
setup(
name = 'json2yaml',
version = '1.2.1-SNAPSHOT',
author = 'David R. Bild',
author_email = 'david@davidbild.org',
keywords = 'yaml json converter ordered order preserving',
url = 'https://github.com/drbild/json2yaml',
description = 'Convert JSON to YAML or vice versa, while'
' preserving the order of associative arrays.',
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
scripts = [
pjoin('bin', 'json2yaml'),
pjoin('bin', 'yaml2json')
],
install_requires = [
'pyyaml',
'pyaml',
'docopt'
]
)