-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 972 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 972 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
27
28
#!/usr/bin/env python
from distutils.core import setup
import xmlcompare
setup(name="XMLCompare",
version=xmlcompare.__version__,
description="XMLCompare checks XML documents/elements for semantic equality",
author="Jan Brohl",
author_email="janbrohl@t-online.de",
url="https://github.com/janbrohl/xmlcompare",
py_modules=[
'xmlcompare'
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
)