Files
JANINE/setup.py

18 lines
483 B
Python
Raw Normal View History

2020-08-22 15:09:59 +02:00
from setuptools import setup, find_packages
setup(
name = 'janine',
2021-06-13 00:17:06 +02:00
version = '1.0.0',
2020-08-22 15:09:59 +02:00
description = 'An XMPP bot relaying data from the IHP, DWD, MOWAS and BIWAP',
url = 'https://git.polynom.me/PapaTutuWawa/janine',
author = 'Alexander "PapaTutuWawa"',
2021-06-13 21:24:53 +02:00
author_email = 'papatutuwawa <at> polynom.me',
2020-08-22 15:09:59 +02:00
license = 'GPLv3',
packages = find_packages(),
install_requires = [
2021-11-19 14:11:06 +01:00
'mira>=0.3.1',
2020-08-22 18:36:53 +02:00
'requests>=2.23.0'
2020-08-22 15:09:59 +02:00
],
2021-06-13 00:17:06 +02:00
zip_safe=True
2020-08-22 15:09:59 +02:00
)