pyproject.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [tool.poetry]
  2. name = "emus"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Colin Powell <colin@unbl.ink>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  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 = {version = "^2.9.3", extras = ["production"]}
  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. whitenoise = "^6.3.0"
  29. [tool.poetry.dev-dependencies]
  30. Werkzeug = "2.0.3"
  31. black = "^22.3"
  32. freezegun = "^1.2"
  33. mypy = "^0.961"
  34. pytest = "^7.1"
  35. pytest-black = "^0.3.12"
  36. pytest-cov = "^3.0"
  37. pytest-flake8 = "^1.1"
  38. pytest-isort = "^3.0"
  39. pytest-runner = "^6.0"
  40. pytest-selenium = "^2.0.1"
  41. types-pytz = "^2022.1"
  42. types-requests = "^2.27"
  43. types-freezegun = "^1.1"
  44. bandit = "^1.7.4"
  45. [tool.black]
  46. line-length = 79
  47. skip-string-normalization = true
  48. target-version = ["py37", "py38"]
  49. include = ".py$"
  50. exclude = "migrations"
  51. [tool.isort]
  52. multi_line_output = 3
  53. include_trailing_comma = true
  54. force_grid_wrap = 0
  55. combine_as_imports = true
  56. [tool.bandit]
  57. exclude_dirs = ["activities/tests/*", "activities/migrations/*"]
  58. [tool.poetry.scripts]
  59. server = 'scripts:server'
  60. migrate = 'scripts:migrate'
  61. shell = 'scripts:shell'
  62. [build-system]
  63. requires = ["poetry-core>=1.0.0"]
  64. build-backend = "poetry.core.masonry.api"