-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
27 lines (26 loc) · 863 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
import os
from setuptools import setup
setup(
name = "wcf-binary parser",
version = "0.5.3",
author = "Timo Schmid",
author_email = "[email protected]",
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",
],
)