This commit is contained in:
spla 2022-08-25 09:59:16 +02:00
pare 1354d25b4b
commit 82fdc003f0
S'han modificat 3 arxius amb 1140 adicions i 0 eliminacions

1107
akkoma/Akkoma.py Normal file

La diferencia del archivo ha sido suprimido porque es demasiado grande Cargar Diff

1
akkoma/__init__.py Normal file
Veure arxiu

@ -0,0 +1 @@
from akkoma.Akkoma import Akkoma, AkkomaError, AkkomaVersionError, AkkomaIllegalArgumentError, AkkomaIOError, AkkomaNetworkError, AkkomaReadTimeout, AkkomaAPIError, AkkomaNotFoundError, AkkomaMalformedEventError

32
setup.py Normal file
Veure arxiu

@ -0,0 +1,32 @@
import setuptools
VERSION = '0.1.6'
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='Akkoma.py',
version=VERSION,
author='spla',
author_email='llemena_obrer.0u@icloud.com',
description='Python wrapper for the [Akkoma](https://akkoma.dev/AkkomaGang/akkoma) API.',
packages=['akkoma'],
long_description=long_description,
long_description_content_type='text/markdown',
url='https://git.mastodont.cat/spla/Akkoma.py',
install_requires=['pytz', 'requests', 'python-dateutil', 'decorator'],
project_urls={
'Bug Tracker': 'https://git.mastodont.cat/spla/Akkoma.py/issues',
},
keywords='akkoma api microblogging',
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
"Intended Audience :: Developers",
'Programming Language :: Python :: 3',
],
include_package_data=True,
python_requires = ">=3.8",
)