2022-08-24 19:00:55 +02:00
|
|
|
import setuptools
|
|
|
|
|
2022-08-24 19:10:01 +02:00
|
|
|
VERSION = '0.1.7'
|
2022-08-24 19:00:55 +02:00
|
|
|
|
|
|
|
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',
|
2022-08-24 19:10:01 +02:00
|
|
|
url='https://git.mastodont.cat/spla/EjabberdAPI.py',
|
2022-08-24 19:00:55 +02:00
|
|
|
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",
|
|
|
|
)
|