2021-07-20 12:51:13 +08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "shynet"
|
2023-07-18 00:03:31 +08:00
|
|
|
version = "0.13.0"
|
2021-07-20 12:51:13 +08:00
|
|
|
description = "Modern, privacy-friendly, and cookie-free web analytics."
|
|
|
|
authors = ["R. Miles McCain <github@sendmiles.email>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
2022-09-14 03:09:36 +08:00
|
|
|
Django = "^4"
|
2021-07-20 12:51:13 +08:00
|
|
|
django-allauth = "^0.45.0"
|
|
|
|
geoip2 = "^4.2.0"
|
|
|
|
whitenoise = "^5.3.0"
|
2022-01-07 14:16:10 +08:00
|
|
|
celery = "^5.2.2"
|
2022-09-14 03:19:43 +08:00
|
|
|
django-ipware = "^4.0.2"
|
2021-07-20 12:51:13 +08:00
|
|
|
PyYAML = "^5.4.1"
|
|
|
|
user-agents = "^2.2.0"
|
|
|
|
rules = "^3.0"
|
|
|
|
gunicorn = "^20.1.0"
|
2021-12-19 03:38:31 +08:00
|
|
|
psycopg2-binary = "^2.9.2"
|
2021-07-20 12:51:13 +08:00
|
|
|
redis = "^3.5.3"
|
|
|
|
django-redis-cache = "^3.0.0"
|
|
|
|
pycountry = "^20.7.3"
|
|
|
|
html2text = "^2020.1.16"
|
|
|
|
django-health-check = "^3.16.4"
|
|
|
|
django-npm = "^1.0.0"
|
|
|
|
python-dotenv = "^0.18.0"
|
|
|
|
django-debug-toolbar = "^3.2.1"
|
2022-04-15 01:41:14 +08:00
|
|
|
django-cors-headers = "^3.11.0"
|
2021-07-20 12:51:13 +08:00
|
|
|
|
2021-11-14 13:03:06 +08:00
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest-sugar = "^0.9.4"
|
|
|
|
factory-boy = "^3.2.0"
|
|
|
|
pytest-django = "^4.4.0"
|
|
|
|
django-coverage-plugin = "^2.0.0"
|
|
|
|
django-stubs = "^1.8.0"
|
|
|
|
mypy = "^0.910"
|
|
|
|
|
2021-07-20 12:51:13 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-09-29 07:16:40 +08:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|