lib.itmens/pyproject.toml

129 lines
2.8 KiB
TOML
Raw Normal View History

2024-06-02 15:11:36 -04:00
[project]
name = "neodb"
version = "0.11"
2024-06-02 15:11:36 -04:00
description = "🧩 self-hosted server tracking what you read/watch/listen/play, powering a global distributed community federating via ActivityPub."
readme = "README.md"
2024-06-05 23:30:03 -04:00
requires-python = ">= 3.12"
2024-06-04 23:18:24 -04:00
dependencies = [
"blurhash-python>=1.2.2",
"cachetools>=5.5.0",
"dateparser>=1.2.0",
2024-07-17 00:21:24 -04:00
"django<5.0",
"django-anymail>=12.0",
2024-06-04 23:18:24 -04:00
"django-auditlog>=3.0.0",
"django-bleach>=3.1.0",
2024-06-04 23:18:24 -04:00
"django-compressor",
"django-cors-headers",
"django-environ>=0.11.2",
"django-hijack>=3.7.0",
"django-jsonform>=2.23.1",
2024-06-04 23:18:24 -04:00
"django-maintenance-mode",
"django-markdownx>=4.0.7",
"django-ninja>=1.3.0",
2024-06-04 23:18:24 -04:00
"django-polymorphic @ git+https://github.com/jazzband/django-polymorphic/@v4.0.0a",
"django-redis>=5.4.0",
"django-rq>=2.10.2",
"django-sass-processor>=1.4.1",
"django-tz-detect>=0.5.0",
"django-user-messages>=1.1.0",
"dnspython>=2.7.0",
"easy-thumbnails>=2.10",
"filetype>=1.2.0",
"gunicorn>=23.0.0",
"httpx>=0.27.2",
"igdb-api-v4>=0.3.3",
"langdetect>=1.0.9",
"listparser>=0.20",
"loguru>=0.7.2",
"lxml>=5.3.0",
"markdownify>=0.13.1",
"mistune>=3.0.2",
"openpyxl>=3.1.5",
"podcastparser>=0.6.10",
2024-06-04 23:18:24 -04:00
"psycopg2-binary",
"requests>=2.32.3",
"sentry-sdk>=2.17.0",
"setproctitle>=1.3.3",
"tqdm>=4.66.6",
"typesense>=0.21.0",
"urlman>=2.0.2",
"validators>=0.34.0",
2024-06-13 20:44:15 -04:00
"deepmerge>=1.1.1",
2024-07-03 00:07:07 -04:00
"django-typed-models @ git+https://github.com/alphatownsman/django-typed-models.git",
"atproto>=0.0.55",
"discord-py>=2.4.0",
2024-10-28 15:49:14 -04:00
"libsass>=0.23.0",
2024-06-04 23:18:24 -04:00
]
[tool.rye]
managed = true
virtual = true
dev-dependencies = [
"pre-commit>=4.0.1",
2024-06-04 23:18:24 -04:00
"black~=24.4.2",
2024-10-13 16:58:29 -04:00
"django-stubs>=5.1.0",
2025-01-02 12:21:51 -05:00
"djlint>=1.36.4",
2024-06-04 23:18:24 -04:00
"isort~=5.13.2",
2024-07-17 00:21:24 -04:00
"lxml-stubs>=0.5.1",
2024-11-16 14:33:51 -05:00
"pyright>=1.1.389",
"ruff>=0.7.1",
"mkdocs-material>=9.5.42",
2024-06-04 23:18:24 -04:00
]
2024-06-02 15:11:36 -04:00
2022-12-29 14:30:31 -05:00
[tool.pyright]
exclude = [
"media",
".venv",
".git",
"playground",
"catalog/*/tests.py",
"journal/tests.py",
"neodb",
"**/migrations",
"neodb-takahe",
]
2023-12-29 16:03:31 -05:00
reportIncompatibleVariableOverride = false
[tool.djlint]
ignore = "T002,T003,H005,H006,H019,H020,H021,H023,H030,H031,D018"
indent = 2
2023-08-10 14:56:38 -04:00
[tool.isort]
profile = "black"
2023-08-10 17:15:00 -04:00
[tool.mypy]
exclude = [
'^neodb-takahe/',
'^legacy/',
'^media/',
'^playground/',
'^catalog/*/tests.py',
'^journal/tests.py',
'^neodb/',
'.*migrations.*',
'.*sites/douban_.*',
]
2023-08-10 17:15:00 -04:00
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "boofilsic.settings"
2023-08-11 01:43:19 -04:00
[tool.ruff]
exclude = [
"neodb-takahe/*",
"media",
".venv",
".git",
"playground",
"**/tests.py",
"neodb",
"**/migrations",
"**/commands",
"**/importers",
"legacy",
]
2024-07-03 16:42:20 -04:00
lint.ignore = ["F401", "F403", "F405"]
2024-06-05 22:12:38 -04:00
[tool.setuptools]
py-modules = []