mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-10-31 19:40:10 +00:00
Harvey Tindall
f2966ef810
Pushed 0.3.8 to PyPI and Docker hub thinking i'd already fixed a problem with new user defaults. I hadn't.
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[tool.poetry]
|
|
name = "jellyfin-accounts"
|
|
version = "0.3.9"
|
|
readme = "README.md"
|
|
description = "A simple account management system for Jellyfin"
|
|
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
|
license = "MIT"
|
|
homepage = "https://github.com/hrfee/jellyfin-accounts"
|
|
repository = "https://github.com/hrfee/jellyfin-accounts"
|
|
keywords = ["jellyfin", "jf-accounts"]
|
|
include = ["jellyfin_accounts/data/*", "jellyfin_accounts/data/static/*.css", "jellyfin_accounts/data/*.html"]
|
|
exclude = ["images/*", "scss/*", "mail/*"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6"
|
|
pyopenssl = "^19.1.0"
|
|
flask = "^1.1.2"
|
|
flask-httpauth = ">= 3.3.0"
|
|
requests = "^2.23.0"
|
|
itsdangerous = "^1.1.0"
|
|
passlib = "^1.7.2"
|
|
pytz = "^2020.1"
|
|
python-dateutil = "^2.8.1"
|
|
watchdog = "^0.10.2"
|
|
waitress = "^1.4.3"
|
|
packaging = "^20.4"
|
|
psutil = "^5.7.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
neovim = "^0.3.1"
|
|
black = "^19.10b0"
|
|
taskipy = "^1.2.1"
|
|
libsass = "^0.20.0"
|
|
|
|
[tool.poetry.scripts]
|
|
jf-accounts = 'jellyfin_accounts:main'
|
|
|
|
[tool.taskipy.tasks]
|
|
pre_compile-css = "task get-npm-deps"
|
|
compile-css = "python scss/compile.py"
|
|
get-npm-deps = "python scss/get_node_deps.py"
|
|
pre_generate-emails = "task get-npm-deps"
|
|
generate-emails = "python mail/generate.py"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|