1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
from distutils.core import setup
version = '1.7.16'
with open('README.md') 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 = 'ryan@quandyfactory.com',
license = 'LICENCE.txt',
url = 'https://github.com/quandyfactory/dicttoxml',
py_modules = ['dicttoxml'],
platforms='Cross-platform',
python_requires=">=3.6",
)
|