|
| 1 | +[project] |
| 2 | +name = "mpv_history_daemon" |
| 3 | +version = "0.2.6" |
| 4 | +description = "Daemon which connects to active mpv instances, saving a history of what I watch/listen to" |
| 5 | +readme = "README.md" |
| 6 | +license = "MIT" |
| 7 | +license-files = ["LICENSE"] |
| 8 | +requires-python = ">=3.9" |
| 9 | +classifiers = [ |
| 10 | + "Development Status :: 3 - Alpha", |
| 11 | + "Intended Audience :: End Users/Desktop", |
| 12 | + "Natural Language :: English", |
| 13 | + "Programming Language :: Python :: 3", |
| 14 | + "Programming Language :: Python :: 3 :: Only", |
| 15 | + "Programming Language :: Python :: 3.9", |
| 16 | + "Programming Language :: Python :: 3.10", |
| 17 | + "Programming Language :: Python :: 3.11", |
| 18 | + "Programming Language :: Python :: 3.12", |
| 19 | +] |
| 20 | +dependencies = [ |
| 21 | + "click>=8.1", |
| 22 | + "logzero", |
| 23 | + "python-mpv-jsonipc", |
| 24 | + "simplejson", |
| 25 | + "kompress", |
| 26 | +] |
| 27 | +[[project.authors]] |
| 28 | +name = "purarue" |
| 29 | + |
| 30 | +[build-system] |
| 31 | +requires = ["setuptools"] |
| 32 | +build-backend = "setuptools.build_meta" |
| 33 | + |
| 34 | +[project.scripts] |
| 35 | +mpv-history-daemon = "mpv_history_daemon.__main__:cli" |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +Homepage = "https://github.com/purarue/mpv_history_daemon" |
| 39 | + |
| 40 | +[project.optional-dependencies] |
| 41 | +optional = ["orjson"] |
| 42 | +testing = ["flake8", "mypy"] |
| 43 | + |
| 44 | +[tool.mypy] |
| 45 | +pretty = "True" |
| 46 | +disallow_any_generics = "False" |
| 47 | +show_error_context = "True" |
| 48 | +show_error_codes = "True" |
| 49 | +namespace_packages = "True" |
| 50 | +disallow_subclassing_any = "True" |
| 51 | +disallow_incomplete_defs = "True" |
| 52 | +no_implicit_optional = "True" |
| 53 | +warn_redundant_casts = "True" |
| 54 | +warn_return_any = "True" |
| 55 | +warn_unreachable = "True" |
| 56 | +check_untyped_defs = "True" |
| 57 | +disallow_untyped_calls = "True" |
| 58 | + |
| 59 | +[tool.setuptools.packages.find] |
| 60 | +include = ["mpv_history_daemon"] |
0 commit comments