-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 992 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "igem"
version = "0.1.4"
description = ""
authors = ["Andre Rico <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.txt"
[tool.poetry.dependencies]
python = ">=3.8.0,<3.11.0"
clarite = ">=2.3.4"
django = "^4.1.5"
patool = "^1.12"
requests = "^2.28.2"
mypy = "^0.991"
types-requests = "^2.28.11.8"
django-thread = "^0.0.1"
psycopg2 = "^2.9.5"
lxml = "^4.9.2"
scikit-learn = "^1.2.2"
[tool.poetry.group.dev.dependencies]
sphinx-rtd-theme = "^1.2.0"
sphinx = "^6.1.3"
cloud-sptheme = "^1.10.1.post20200504175005"
sphinx-copybutton = "^0.5.1"
sphinx-click = "^4.4.0"
coverage = "^7.2.7"
parameterized = "^0.9.0"
django-debug-toolbar = "^3.8.1"
pytest-django = "^4.5.2"
black = "^23.1.0"
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["igem"]
DJANGO_SETTINGS_MODULE = "src.settings"
python_files = ["test_*.py", "*_test.py","test*.py"]