Home ▸ Code ▸ canopy ▸ Files ▸
setup.py
# [`canopy`][1]: a decentralized social web platform
# Copyright (c) 2018- @[Angelo Gladding][2]
#
# This program is free software: it is distributed in the hope that it
# will be useful, but *without any warranty*; without even the implied
# warranty of merchantability or fitness for a particular purpose. You
# can redistribute it and/or modify it under the terms of the @@[GNU's
# Not Unix][3] %[Affero General Public License][4] as published by the
# @@[Free Software Foundation][5], either version 3 of the License, or
# any later version.
#
# *[GNU]: GNU's Not Unix
#
# [1]: https://lahacker.net/code/canopy
# [2]: https://lahacker.net
# [3]: https://gnu.org
# [4]: https://gnu.org/licenses/agpl
# [5]: https://fsf.org
from setuptools import setup
setup(requires=["geocoder", "gevent", "html2text", "nltk", "numpy",
"opencv_python", "opencv_contrib_python", "phe",
"phonenumbers", "pillow", "qrcode", "sopel", "scrypt",
"stripe", "tweepy", "twilio", "vobject", "web"],
provides={"term.apps": ["canopy = canopy.__main__:main",
"canopy-bot = canopy_bot:main"]},
discover=__file__)
|