JANINE/setup.py

18 lines
533 B
Python
Raw Normal View History

2020-08-22 13:09:59 +00:00
from setuptools import setup, find_packages
setup(
name = 'janine',
2021-06-12 22:17:06 +00:00
version = '1.0.0',
2020-08-22 13:09:59 +00: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 19:24:53 +00:00
author_email = 'papatutuwawa <at> polynom.me',
2020-08-22 13:09:59 +00:00
license = 'GPLv3',
packages = find_packages(),
install_requires = [
2021-06-15 18:39:48 +00:00
'mira @ git+https://git.polynom.me/PapaTutuWawa/mira.git@0.3.1',
2020-08-22 16:36:53 +00:00
'requests>=2.23.0'
2020-08-22 13:09:59 +00:00
],
2021-06-12 22:17:06 +00:00
zip_safe=True
2020-08-22 13:09:59 +00:00
)