mira/setup.py

32 lines
699 B
Python

from setuptools import setup, find_packages
setup(
name = "mira",
version = "0.3.1",
description = "A command-base XMPP bot framework",
url = "https://git.polynom.me/PapaTutuWawa/mira",
author = "Alexander \"PapaTutuWawa\"",
author_email = "papatutuwawa <at> polynom.me",
license = "GPLv3",
packages = find_packages(),
install_requires = [
"aioxmpp>=0.12.0",
"toml>=0.10.2"
],
extra_require = {
"dev": [
"pytest",
"black"
]
},
tests_require = [
"pytest"
],
zip_safe=True,
entry_points={
"console_scripts": [
"mira = mira.base:main"
]
}
)