fork of https://f-hub.org/XMPP/xmpp-discord-bridge
at 77e032e65fc916cf990c75a9c1c01b63c308ddc2 29 lines 734 B view raw
1from setuptools import setup, find_packages 2 3setup( 4 name = "xmpp_discord_bridge", 5 version = "0.2.0", 6 url = "https://git.polynom.me/PapaTutuWawa/xmpp-discord-bridge", 7 author = "scoliono", 8 author_email = "jshiffer@linux.ucla.edu", 9 license = "GPLc3", 10 packages = find_packages(), 11 install_requires = [ 12 "requests==2.27.1", 13 "slixmpp @ git+https://codeberg.org/poezio/slixmpp.git@fix-muc-join", 14 "nextcord", 15 "toml==0.10.2", 16 "bidict" 17 ], 18 extra_require = { 19 "dev": [ 20 "black" 21 ] 22 }, 23 zip_safe = True, 24 entry_points = { 25 "console_scripts": [ 26 "xmpp-discord-bridge = xmpp_discord_bridge.main:main" 27 ] 28 } 29)