pyproject.toml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. [tool.poetry.group.dev]
  48. optional = true
  49. [tool.poetry.group.dev.dependencies]
  50. Werkzeug = "2.0.3"
  51. black = "^22.3"
  52. coverage = "^7.0.5"
  53. mypy = "^0.961"
  54. pytest = "^7.1"
  55. pytest-black = "^0.3.12"
  56. pytest-cov = "^3.0"
  57. pytest-django = "^4.5.2"
  58. pytest-flake8 = "^1.1"
  59. pytest-isort = "^3.0"
  60. pytest-runner = "^6.0"
  61. time-machine = "^2.9.0"
  62. types-pytz = "^2022.1"
  63. types-requests = "^2.27"
  64. bandit = "^1.7.4"
  65. [tool.pytest.ini_options]
  66. minversion = "6.0"
  67. addopts = "-ra -q --reuse-db"
  68. testpaths = ["tests"]
  69. DJANGO_SETTINGS_MODULE='vrobbler.settings-testing'
  70. [tool.black]
  71. line-length = 79
  72. target-version = ["py39", "py310"]
  73. include = ".py$"
  74. exclude = "migrations"
  75. [tool.isort]
  76. multi_line_output = 3
  77. include_trailing_comma = true
  78. force_grid_wrap = 0
  79. combine_as_imports = true
  80. [tool.bandit]
  81. exclude_dirs = ["*/tests/*", "*/migrations/*"]
  82. [tool.poetry.scripts]
  83. vrobbler = "vrobbler.cli:main"
  84. [build-system]
  85. requires = ["poetry-core>=1.0.0"]
  86. build-backend = "poetry.core.masonry.api"