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 28 29 30
|
from setuptools import setup
setup(
name='libconf',
version='2.0.1',
description="A pure-Python libconfig reader/writer with permissive license",
long_description=open('README.rst').read(),
author="Christian Aichinger",
author_email="Greek0@gmx.net",
url='https://github.com/Grk0/python-libconf',
download_url='https://github.com/Grk0/python-libconf/tarball/2.0.1',
license="MIT",
py_modules=['libconf'],
keywords='libconfig configuration parser library',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
|