Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
27 lines (26 loc) · 863 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 863 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
importos
fromsetuptoolsimportsetup
setup(
name="wcf-binary parser",
version="0.5.3",
author="Timo Schmid",
author_email="tschmid@ernw.de",
description= ("A library for transforming wcf-binary data from and to xml"),
license="BSD",
keywords="wcf wcf-binary xml",
url="",
packages=['wcf', 'wcf.records', 'tests'],
scripts=['wcf2xml.py', 'xml2wcf.py'],
long_description="",
test_suite="tests.alltests.Suite",
install_requires=["future"],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)