pyproject.toml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. [tool.poetry]
  2. name = "vrobbler"
  3. version = "0.16.1"
  4. description = ""
  5. authors = ["Colin Powell <colin@unbl.ink>"]
  6. [tool.poetry.dependencies]
  7. python = ">=3.9,<3.12"
  8. Django = "^4.0.3"
  9. django-extensions = "^3.1.5"
  10. python-dateutil = "^2.8.2"
  11. python-dotenv = "^0.20.0"
  12. python-json-logger = "^2.0.2"
  13. colorlog = "^6.6.0"
  14. httpx = "<=0.27.2"
  15. djangorestframework = "^3.13.1"
  16. Markdown = "^3.3.6"
  17. django-filter = "^21.1"
  18. Pillow = "^9.0.1"
  19. psycopg2 = "^2.9.3"
  20. dj-database-url = "^0.5.0"
  21. django-mathfilters = "^1.0.0"
  22. django-allauth = "^0.50.0"
  23. django-celery-results = "^2.3.0"
  24. redis = "^4.2.2"
  25. django-taggit = "^2.1.0"
  26. django-markdownify = "^0.9.1"
  27. gunicorn = "^20.1.0"
  28. django-simple-history = "^3.1.1"
  29. musicbrainzngs = "^0.7.1"
  30. cinemagoer = "^2022.12.27"
  31. pysportsdb = "^0.1.0"
  32. pytz = "^2022.7.1"
  33. django-redis = "^5.2.0"
  34. pylast = "^5.1.0"
  35. django-encrypted-field = "^1.0.5"
  36. celery = "^5.2.7"
  37. honcho = "^1.1.0"
  38. howlongtobeatpy = "^1.0.5"
  39. beautifulsoup4 = "^4.11.2"
  40. django-storages = "^1.13.2"
  41. stream-sqlite = "^0.0.41"
  42. ipython = "^8.14.0"
  43. pendulum = "^2.1.2"
  44. trafilatura = "^1.6.3"
  45. django-imagekit = "^5.0.0"
  46. thefuzz = "^0.22.1"
  47. dataclass-wizard = "0.22.0"
  48. webdavclient3 = "^3.14.6"
  49. boto3 = "^1.35.37"
  50. urllib3 = "<2"
  51. django-oauth-toolkit = "^3.0.1"
  52. meta-yt = "^0.1.9"
  53. berserk = "^0.13.2"
  54. poetry-bumpversion = "^0.3.3"
  55. [tool.poetry.group.test]
  56. optional = true
  57. [tool.poetry.group.test.dependencies]
  58. Werkzeug = "2.0.3"
  59. black = "^22.3"
  60. coverage = "^7.0.5"
  61. mypy = "^0.961"
  62. pytest = "^7.1"
  63. pytest-black = "^0.3.12"
  64. pytest-cov = "^3.0"
  65. pytest-django = "^4.5.2"
  66. pytest-xdist= "^1.0.0"
  67. pytest-flake8 = "^1.1"
  68. pytest-isort = "^3.0"
  69. pytest-runner = "^6.0"
  70. time-machine = "^2.9.0"
  71. types-pytz = "^2022.1"
  72. types-requests = "^2.27"
  73. bandit = "^1.7.4"
  74. [tool.pytest.ini_options]
  75. minversion = "6.0"
  76. addopts = "-ra -q --reuse-db"
  77. testpaths = ["tests"]
  78. DJANGO_SETTINGS_MODULE='vrobbler.settings-testing'
  79. [tool.black]
  80. line-length = 79
  81. target-version = ["py39", "py310"]
  82. include = ".py$"
  83. exclude = "migrations"
  84. [tool.isort]
  85. multi_line_output = 3
  86. include_trailing_comma = true
  87. force_grid_wrap = 0
  88. combine_as_imports = true
  89. [tool.bandit]
  90. exclude_dirs = ["*/tests/*", "*/migrations/*"]
  91. [tool.poetry.scripts]
  92. vrobbler = "vrobbler.cli:main"
  93. [build-system]
  94. requires = ["poetry-core>=1.0.0"]
  95. build-backend = "poetry.core.masonry.api"