pyproject.toml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. [tool.poetry]
  2. name = "vrobbler"
  3. version = "0.11.12"
  4. description = ""
  5. authors = ["Colin Powell <colin@unbl.ink>"]
  6. [tool.poetry.dependencies]
  7. python = ">=3.9,<4.0"
  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. djangorestframework = "^3.13.1"
  15. Markdown = "^3.3.6"
  16. django-filter = "^21.1"
  17. Pillow = "^9.0.1"
  18. psycopg2 = "^2.9.3"
  19. dj-database-url = "^0.5.0"
  20. django-mathfilters = "^1.0.0"
  21. django-allauth = "^0.50.0"
  22. django-celery-results = "^2.3.0"
  23. redis = "^4.2.2"
  24. django-taggit = "^2.1.0"
  25. django-markdownify = "^0.9.1"
  26. gunicorn = "^20.1.0"
  27. django-simple-history = "^3.1.1"
  28. musicbrainzngs = "^0.7.1"
  29. cinemagoer = "^2022.12.27"
  30. pysportsdb = "^0.1.0"
  31. pytz = "^2022.7.1"
  32. django-redis = "^5.2.0"
  33. pylast = "^5.1.0"
  34. django-encrypted-field = "^1.0.5"
  35. celery = "^5.2.7"
  36. honcho = "^1.1.0"
  37. howlongtobeatpy = "^1.0.5"
  38. beautifulsoup4 = "^4.11.2"
  39. django-storages = "^1.13.2"
  40. boto3 = "^1.26.98"
  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. [tool.poetry.group.dev]
  49. optional = true
  50. [tool.poetry.group.dev.dependencies]
  51. Werkzeug = "2.0.3"
  52. black = "^22.3"
  53. coverage = "^7.0.5"
  54. mypy = "^0.961"
  55. pytest = "^7.1"
  56. pytest-black = "^0.3.12"
  57. pytest-cov = "^3.0"
  58. pytest-django = "^4.5.2"
  59. pytest-flake8 = "^1.1"
  60. pytest-isort = "^3.0"
  61. pytest-runner = "^6.0"
  62. time-machine = "^2.9.0"
  63. types-pytz = "^2022.1"
  64. types-requests = "^2.27"
  65. bandit = "^1.7.4"
  66. [tool.pytest.ini_options]
  67. minversion = "6.0"
  68. addopts = "-ra -q --reuse-db"
  69. testpaths = ["tests"]
  70. DJANGO_SETTINGS_MODULE='vrobbler.settings-testing'
  71. [tool.black]
  72. line-length = 79
  73. target-version = ["py39", "py310"]
  74. include = ".py$"
  75. exclude = "migrations"
  76. [tool.isort]
  77. multi_line_output = 3
  78. include_trailing_comma = true
  79. force_grid_wrap = 0
  80. combine_as_imports = true
  81. [tool.bandit]
  82. exclude_dirs = ["*/tests/*", "*/migrations/*"]
  83. [tool.poetry.scripts]
  84. vrobbler = "vrobbler.cli:main"
  85. [build-system]
  86. requires = ["poetry-core>=1.0.0"]
  87. build-backend = "poetry.core.masonry.api"