Files
@ 43d0202c6c60
Branch filter:
Location: C3L-NOC/spaceapi/setup.py - annotation
43d0202c6c60
726 B
text/x-python
Add new views, that use BasicAuth instead of DigestAuth
Somehow the httpx library fails with DigestAuth, altough it officialy supports
it. We use it in the spaceapi matrix bot.
Somehow the httpx library fails with DigestAuth, altough it officialy supports
it. We use it in the spaceapi matrix bot.
00d1f8ab3675 00d1f8ab3675 275690f3bbdc 00d1f8ab3675 00d1f8ab3675 275690f3bbdc 275690f3bbdc 275690f3bbdc 00d1f8ab3675 00d1f8ab3675 feca6a8b97a4 feca6a8b97a4 00d1f8ab3675 275690f3bbdc 275690f3bbdc 275690f3bbdc 275690f3bbdc 00d1f8ab3675 00d1f8ab3675 275690f3bbdc 275690f3bbdc 275690f3bbdc 00d1f8ab3675 f603d4b1e1b0 275690f3bbdc 275690f3bbdc 275690f3bbdc 275690f3bbdc 275690f3bbdc 275690f3bbdc 275690f3bbdc 00d1f8ab3675 | from pprint import pprint
from setuptools import find_packages, setup
packages = find_packages()
packages.append("spaceapi.templates")
packages.append("spaceapi.static")
packages.append("spaceapi.schema")
setup(
name="spaceapi",
version="0.0.15",
url=None,
license="GPLv3+",
author="Dennis Fink",
author_email="dennis.fink@c3l.lu",
description="spaceapi endpoint for c3l.lu",
packages=packages,
package_data={
"spaceapi.templates": ["*"],
"spaceapi.static": ["*"],
"spaceapi.schema": ["*"],
},
install_requires=[
"Flask",
"Flask-HTTPAuth",
"Flask-Bootstrap",
"jsonschema",
"tweepy",
"Mastodon.py",
],
)
|