-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.13 KB
/
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
43
[tool.poetry]
name = "gator-computational-cloud"
version = "0.1.0"
description = ""
authors = ["Nathan Loria <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
Django = "^4.0.3"
python-dotenv = "^0.20.0"
django-widget-tweaks = "^1.4.12"
django-cryptography = "^1.1"
django-recaptcha = "^3.0.0"
mysqlclient = "^2.1.0"
boto3 = "^1.21.35"
dropbox = "^11.29.0"
xmltodict = "^0.12.0"
psutil = "^5.9.0"
paramiko = "^2.10.3"
requests = "^2.27.1"
rpyc = "^5.1.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = "^7.1.1"
flake8 = "^4.0.1"
pylint = "^2.13.4"
taskipy = "^1.10.1"
pytest-codecov = "^0.4.0"
coverage = "^6.3.2"
[tool.pytest.ini_options]
pythonpath = [
".", "gcc_exec",
]
[tool.taskipy.tasks]
lint = { cmd = "black gcc_exec socket_service --check;flake8 gcc_exec socket_service --ignore=E501,W503;pylint gcc_exec socket_service", help = "Run the black checks for source code format" }
test = { cmd = "pytest --cov gcc_exec --cov-report xml:coverage.xml --cov-fail-under 50", help = "Run the test suite to ensure code correctness" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"