forked from quandyfactory/dicttoxml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (21 loc) · 777 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
from distutils.core import setup
version = '1.7.4'
with open('README.markdown') as readme:
long_description = readme.read()
setup(
name = 'dicttoxml',
version = version,
description = 'Converts a Python dictionary or other native data type into a valid XML string. ',
long_description = long_description,
author = 'Ryan McGreal',
author_email = '[email protected]',
license = 'LICENCE.txt',
url = 'https://github.com/quandyfactory/dicttoxml',
py_modules = ['dicttoxml'],
download_url = 'https://pypi.python.org/packages/source/d/dicttoxml/dicttoxml-%s.tar.gz?raw=true' % (version),
platforms='Cross-platform',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
)