2021-03-30 22:31:29 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
2021-06-15 10:41:48 +00:00
|
|
|
name = "mira",
|
2021-06-15 18:35:30 +00:00
|
|
|
version = "0.3.1",
|
2021-06-15 10:41:48 +00:00
|
|
|
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",
|
2021-03-30 22:31:29 +00:00
|
|
|
packages = find_packages(),
|
|
|
|
install_requires = [
|
2021-06-15 10:41:48 +00:00
|
|
|
"aioxmpp>=0.12.0",
|
|
|
|
"toml>=0.10.2"
|
|
|
|
],
|
|
|
|
extra_require = {
|
|
|
|
"dev": [
|
|
|
|
"pytest",
|
|
|
|
"black"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
tests_require = [
|
|
|
|
"pytest"
|
2021-03-30 22:31:29 +00:00
|
|
|
],
|
|
|
|
zip_safe=True,
|
|
|
|
entry_points={
|
2021-06-15 10:41:48 +00:00
|
|
|
"console_scripts": [
|
|
|
|
"mira = mira.base:main"
|
2021-03-30 22:31:29 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|