18 lines
533 B
Python
18 lines
533 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = 'janine',
|
|
version = '1.0.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 <at> polynom.me',
|
|
license = 'GPLv3',
|
|
packages = find_packages(),
|
|
install_requires = [
|
|
'mira @ git+https://git.polynom.me/PapaTutuWawa/mira.git@0.3.1',
|
|
'requests>=2.23.0'
|
|
],
|
|
zip_safe=True
|
|
)
|