You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
3.4 KiB

2 years ago
2 years ago
  1. [tool.poetry]
  2. name = "doccano"
  3. version = "1.8.0"
  4. description = "doccano, text annotation tool for machine learning practitioners"
  5. authors = ["Hironsan <hiroki.nakayama.py@gmail.com>"]
  6. license = "MIT"
  7. readme = "README.md"
  8. homepage = "https://doccano.github.io/doccano/"
  9. repository = "https://github.com/doccano/doccano"
  10. documentation = "https://doccano.github.io/doccano/"
  11. classifiers = [
  12. "Programming Language :: Python",
  13. "Programming Language :: Python :: 3.8",
  14. ]
  15. packages = [
  16. { include = "backend", from = ".." },
  17. ]
  18. include = [
  19. "backend/client/dist/**/*",
  20. "backend/staticfiles/**/*"
  21. ]
  22. exclude = [
  23. "backend/filepond-temp-uploads",
  24. "backend/media",
  25. "backend/db.sqlite3*",
  26. "backend/poetry.lock"
  27. ]
  28. [tool.poetry.extras]
  29. mssql = ["django-mssql-backend"]
  30. postgresql = ["psycopg2-binary"]
  31. [tool.poetry.scripts]
  32. doccano = 'backend.cli:main'
  33. [tool.poetry.dependencies]
  34. python = "^3.8"
  35. Django = "^4.0.2"
  36. environs = "^9.5.0"
  37. furl = "^2.1.3"
  38. djangorestframework = "^3.13.1"
  39. django-filter = "^21.1"
  40. django-polymorphic = "^3.1.0"
  41. django-cors-headers = "^3.11.0"
  42. drf-yasg = "^1.20.0"
  43. django-rest-polymorphic = "^0.1.9"
  44. chardet = "^4.0.0"
  45. pyexcel = "^0.7.0"
  46. seqeval = "^1.2.2"
  47. whitenoise = "^6.0.0"
  48. dj-database-url = "^0.5.0"
  49. pyexcel-xlsx = "^0.6.0"
  50. gunicorn = "^20.1.0"
  51. auto-labeling-pipeline = "^0.1.21"
  52. dj-rest-auth = {extras = ["with_social"], version = "^2.2.5"}
  53. django-drf-filepond = "^0.4.1"
  54. celery = "^5.2.3"
  55. django-celery-results = "2.4.0"
  56. SQLAlchemy = "^1.4.31"
  57. waitress = "^2.0.0"
  58. django-health-check = "^3.16.5"
  59. djangorestframework-xml = "^2.0.0"
  60. django-storages = {extras = ["google"], version = "^1.13.1"}
  61. django-cleanup = "^6.0.0"
  62. filetype = "^1.0.10"
  63. pandas = "^1.4.2"
  64. flower = "^1.2.0"
  65. [tool.poetry.dev-dependencies]
  66. model-mommy = "^2.0.0"
  67. coverage = "^6.3.1"
  68. flake8 = "^4.0.1"
  69. isort = {extras = ["pyproject"], version = "^5.10.1"}
  70. autopep8 = "^1.6.0"
  71. mypy = "^0.931"
  72. watchdog = "^2.1.6"
  73. black = "^22.1.0"
  74. pyproject-flake8 = "^0.0.1-alpha.2"
  75. types-chardet = "^4.0.3"
  76. types-requests = "^2.27.10"
  77. types-waitress = "^2.0.6"
  78. taskipy = "^1.10.1"
  79. unittest-xml-reporting = "^3.2.0"
  80. [build-system]
  81. requires = ["poetry-core>=1.0.0"]
  82. build-backend = "poetry.core.masonry.api"
  83. [tool.poetry-dynamic-versioning]
  84. enable = false
  85. [tool.black]
  86. line-length = 120
  87. target-version = ['py37', 'py38']
  88. include = '\.pyi?$'
  89. [tool.flake8]
  90. max-line-length = 120
  91. max-complexity = 18
  92. ignore = "E203,E266,W503,"
  93. filename = "*.py"
  94. [tool.mypy]
  95. python_version = "3.8"
  96. ignore_missing_imports = true
  97. show_error_codes = true
  98. exclude = [
  99. "migrations",
  100. "config",
  101. ]
  102. [tool.isort]
  103. profile = "black"
  104. include_trailing_comma = true
  105. multi_line_output = 3
  106. known_first_party = [
  107. "api",
  108. "auto_labeling",
  109. "config",
  110. "data_export",
  111. "data_import",
  112. "examples",
  113. "label_types",
  114. "labels",
  115. "metrics",
  116. "projects",
  117. "roles",
  118. "users"
  119. ]
  120. known_local_folder = [
  121. "api",
  122. "auto_labeling",
  123. "config",
  124. "data_export",
  125. "data_import",
  126. "examples",
  127. "label_types",
  128. "labels",
  129. "metrics",
  130. "projects",
  131. "roles",
  132. "users"
  133. ]
  134. [tool.taskipy.tasks]
  135. isort = "isort . -c --skip migrations"
  136. flake8 = "pflake8 --filename \"*.py\" --extend-exclude \"*/migrations\""
  137. black = "black --check ."
  138. mypy = "mypy --namespace-packages --explicit-package-bases ."
  139. wait_for_db = "python manage.py wait_for_db"
  140. test = "python manage.py test --pattern=\"test*.py\""
  141. migrate = "python manage.py migrate"
  142. collectstatic = "python manage.py collectstatic --noinput"