forked from darthghandi/jsoncompare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 725 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 725 Bytes
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
#!/usr/bin/env python
from setuptools import setup
from json_compare import __version__
def read_readme(filename):
try:
import pypandoc
return pypandoc.convert(filename, 'rst')
except (IOError, ImportError):
return ''
setup(
name='json_compare',
version=__version__,
description='Json comparison tool',
author='Chris Saxey',
author_email='chrissaxey@gmail.com',
url='https://github.com/darthghandi/jsoncompare',
packages=['json_compare', 'json_compare.test'],
test_suite="json_compare.test.test_json_compare",
keywords='json comparison compare order',
long_description=read_readme('README.md'),
install_requires=['python-rapidjson', 'future']
)