meta: Initial commit

This commit is contained in:
2020-08-22 15:09:59 +02:00
commit e7a3743a84
9 changed files with 995 additions and 0 deletions

22
setup.py Normal file
View File

@@ -0,0 +1,22 @@
from setuptools import setup, find_packages
setup(
name = 'janine',
version = '0.1.0',
description = 'An XMPP bot relaying data from the IHP, DWD, MOWAS and BIWAP',
url = 'https://git.polynom.me/PapaTutuWawa/janine',
author = 'Alexander "PapaTutuWawa"',
author_email = 'papatutuwawa@polynom.me',
license = 'GPLv3',
packages = find_packages(),
install_requires = [
'aioxmpp>=0.11.0',
'requests>=2.24.0'
],
zip_safe=True,
entry_points={
'console_scripts': [
'janine = janine.janine:main'
]
}
)