Advertisement
szabozoltan69

pyproject.toml

Apr 20th, 2022
774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.89 KB | None | 0 0
  1. [tool.poetry]
  2. name = "go-api"
  3. version = "1.1.419"
  4. description = ""
  5. authors = ["go-dev <[email protected]>"]
  6. license = "MIT License"
  7.  
  8. [tool.poetry.dependencies]
  9. python = "^3.8"
  10. Django = "==3.2"
  11. Markdown = "==3.3.4"
  12. Pillow = "==9.0.1"
  13. PyPDF2 = "==1.26.0"
  14. pdf2image = "==1.16.0"
  15. azure-storage = "==0.36.0"
  16. azure-common = "==1.1.19"
  17. azure-nspkg = "==3.0.2"
  18. azure-storage-blob = "==1.5.0"
  19. azure-storage-common = "==1.4.0"
  20. azure-storage-logging = "==0.5.1"
  21. azure-storage-nspkg = "==3.1.0"
  22. beautifulsoup4 = "==4.6.3"
  23. boto3 = "==1.20.38"
  24. coreapi = "==2.3.3"
  25. coreschema = "==0.0.4"
  26. coverage = "==4.4.2"
  27. django-admin-autocomplete-filter = "==0.5"
  28. django-admin-list-filter-dropdown = "==1.0.2"
  29. django-cors-headers = "==3.11.0"
  30. django-coverage = "==1.2.4"
  31. django-enumfields = "==0.10.0"
  32. django-extensions = "==2.0.6"
  33. django-filter = "==2.4.0"
  34. django-guardian = "==1.5.1"
  35. django-modeltranslation = "==0.15"
  36. django-reversion-compare = "==0.9.0"
  37. django-reversion = "==3.0.5"
  38. django-storages = "==1.7.1"
  39. django-tastypie = "==0.14.3"
  40. django-tinymce4-lite = "==1.7.4"
  41. djangorestframework-csv = "==2.1.1"
  42. djangorestframework-guardian = "==0.1.1"
  43. djangorestframework = "==3.11.2"
  44. django-environ = "^0.8.1"
  45. # upgrade elasticsearch? Keep synched with init-es.sh: a new docker image (es vm) is also needed. Then manage.py index_elasticsearch!"
  46. elasticsearch = "==6.8.2"
  47. factory_boy = "==2.12.0"
  48. fuzzywuzzy = "==0.17.0"
  49. graphene-django = "^2.15.0"
  50. graphene = "^2.0"
  51. graphql-core = "^2.0"
  52. gunicorn = "==19.7.1"
  53. lxml = "==4.6.5"
  54. opencensus-ext-azure = "==1.0.7"
  55. opencensus-ext-django = "==0.7.4"
  56. pandas = "==1.3.5"
  57. "pdfminer.six" = "==20191110"
  58. pytidylib = "==0.3.2"
  59. polib = "==1.1.0"
  60. psycopg2 = "==2.8.6"
  61. pycountry = "==19.8.18"
  62. pydash = "==4.8.0"
  63. python-Levenshtein = "==0.12.1"
  64. python-dateutil = "==2.8.0"
  65. python-mimeparse = "==1.6.0"
  66. pytz = "==2019.1"
  67. requests = "==2.27.1"
  68. tabula-py = "==1.2.0"
  69. typing = "==3.6.2"
  70. # urllib3 = "==1.26.8"
  71. xmltodict = "==0.11.0"
  72. xhtml2pdf = "==0.2.5"
  73. reportlab = "==3.6.6"  # XXX: Used by xhtml2pdf reportlab==3.6.7 breaks for now
  74. celery = { version = "==5.1.2", extras = ["redis"] }
  75. django-redis = "==5.0.0"
  76.  
  77. mapbox-tilesets = "*"
  78. ipython = "*"
  79.  
  80. [tool.poetry.dev-dependencies]
  81. pytest-profiling = "*"
  82. pytest-ordering = "*"
  83. pytest-django = "*"
  84. snapshottest = "==0.5.1"
  85. django-debug-toolbar = "==2.2.1"
  86.  
  87. [tool.pyright]
  88. extraPaths = ["apps"]
  89. exclude = [
  90.     "**/node_modules",
  91.     "**/__pycache__",
  92.     "apps/experimental",
  93.     "apps/typestubs",
  94.     "**/snap_test_*.py",
  95. ]
  96. reportMissingImports = true
  97. reportMissingTypeStubs = false
  98.  
  99. [tool.black]
  100. line-length = 125
  101. py36 = true
  102. include = '\.pyi?$'
  103. exclude = '''
  104. /(
  105.    \.git
  106.  | \.tox
  107.  | \.venv
  108.  | _build
  109.  | buck-out
  110.  | build
  111.  | dist
  112.  | docs
  113. )/
  114. '''
  115. extend-exclude = '^.*\b(migrations)\b.*$'
  116.  
  117. [build-system]
  118. requires = ["poetry-core>=1.0.0"]
  119. build-backend = "poetry.core.masonry.api"
  120.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement