import setuptools VERSION = '0.1.7' with open('README.md', 'r', encoding='utf-8') as fh: long_description = fh.read() setuptools.setup( name='EjabberdAPI', version=VERSION, author='spla', author_email='llemena_obrer.0u@icloud.com', description='Python wrapper for Ejabberd API.', packages=['ejabberdapi'], long_description=long_description, long_description_content_type='text/markdown', url='https://git.mastodont.cat/spla/EjabberdAPI.py', install_requires=['requests'], project_urls={ 'Bug Tracker': 'https://git.mastodont.cat/spla/EjabberdAPI.py/issues', }, keywords='ejabberd xmpp chat omemo', classifiers=[ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Communications", "Intended Audience :: Developers", "Topic :: Internet :: XMPP", 'Programming Language :: Python :: 3', ], include_package_data=True, python_requires = ">=3.8", )