
b46ada9f72
added support for dotenv files to be loaded in lieu of
actual environment variables. This code has since been neglected across
infrastructure changes that removed the need for an env file, moved
its location, and changed dependency management style.
This won't be operative in production (and already isn't, since there'd
be an ImportError on 'dotenv' if so) but makes some local testing
setups more convenient.
53 lines
1,021 B
TOML
53 lines
1,021 B
TOML
[tool.poetry]
|
|
name = "rdrama"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
license = "AGPL"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "~3.10" # updating to 3.11 causes instability; see https://github.com/themotte/rDrama/issues/446
|
|
beautifulsoup4 = "*"
|
|
bleach = "4.1.0"
|
|
Flask = "*"
|
|
Flask-Caching = "*"
|
|
Flask-Compress = "*"
|
|
Flask-Limiter = "*"
|
|
Flask-Mail = "*"
|
|
Flask-Migrate = "*"
|
|
Flask-Socketio = "*"
|
|
flask_profiler = "*"
|
|
gevent = "*"
|
|
gevent-websocket = "*"
|
|
greenlet = "*"
|
|
gunicorn = "*"
|
|
lxml = "*"
|
|
mistletoe = "*"
|
|
matplotlib = "*"
|
|
Pillow = "*"
|
|
psutil = "*"
|
|
pyotp = "*"
|
|
python-dotenv = "*"
|
|
qrcode = "*"
|
|
redis = "*"
|
|
requests = "*"
|
|
SQLAlchemy = "^1.4.43"
|
|
user-agents = "*"
|
|
psycopg2-binary = "*"
|
|
pusher_push_notifications = "*"
|
|
yattag = "*"
|
|
webptools = "*"
|
|
supervisor = "*"
|
|
superlance = "*"
|
|
pytest = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
norecursedirs = [
|
|
"thirdparty/*",
|
|
]
|