29 lines
696 B
Python
29 lines
696 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = "xmpp_discord_bridge",
|
|
version = "0.1.0",
|
|
url = "https://git.polynom.me/PapaTutuWawa/xmpp-discord-bridge",
|
|
author = "Alexander \"PapaTutuWawa\"",
|
|
author_email = "papatutuwawa <at> polynom.me",
|
|
license = "GPLc3",
|
|
packages = find_packages(),
|
|
install_requires = [
|
|
"requests>=2.26.0",
|
|
"slixmpp>=1.7.1",
|
|
"discord.py>=1.7.3",
|
|
"toml>=0.10.2"
|
|
],
|
|
extra_require = {
|
|
"dev": [
|
|
"black"
|
|
]
|
|
},
|
|
zip_safe = True,
|
|
entry_points = {
|
|
"console_scripts": [
|
|
"xmpp-discord-bridge = xmpp_discord_bridge.main:main"
|
|
]
|
|
}
|
|
)
|