-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (24 loc) · 919 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
#!/usr/bin/env python
from distutils.core import setup
# patch distutils if it can't cope with the "classifiers" or
# "download_url" keywords
from sys import version
if version < '2.2.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
import streamxmlwriter
setup(name="streamxmlwriter",
version=streamxmlwriter.__version__,
description="Simple library for incrementally writing XML files of arbitrary size",
long_description=streamxmlwriter.__doc__,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Text Processing :: Markup :: XML",
],
author="Filip Salomonsson",
author_email="[email protected]",
url="http://github.com/filipsalomonsson/streamxmlwriter/tree/master",
py_modules=["streamxmlwriter"],
license="MIT",
)