forked from JoshData/xml_diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 639 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
# Note to self: To upload a new version to PyPI, run:
# python setup.py sdist upload
from setuptools import setup, find_packages
setup(
name='xml_diff',
version='0.6.0',
author=u'Joshua Tauberer',
author_email=u'jt@occams.info',
packages = find_packages(),
url='https://github.com/joshdata/xml_diff',
license='CC0 (copyright waived)',
description='Compares two XML documents by diffing their text, ignoring structure, and wraps changed text in <del>/<ins> tags.',
long_description=open("README.rst").read(),
keywords = "compare diff XML",
install_requires=["lxml"],
)