-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (43 loc) · 1.23 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
44
45
46
47
[tool.poetry]
name = "smartsheet-notebooks"
version = "0.1.0"
description = "Notebook-as-functions for CHAI Smartsheet work"
authors = ["CU Health AI Software Engineering <[email protected]>"]
license = "BSD-3"
[tool.poetry.dependencies]
python = "~3.10"
pandas = "^1.4.2"
papermill = "^2.3.4"
pywin32 = {version = "304", platform = "windows"}
prefect = {extras = ["all"], version = "^2.0.0"}
jupyter = "^1.0.0"
scrapbook = {extras = ["all"], version = "^0.5.0"}
PyNaCl = "^1.5.0"
python-dotenv = {extras = ["cli"], version = "^0.20.0"}
smartsheet-python-sdk = "^2.177.1"
docxtpl = "^0.16.0"
matplotlib = "^3.5.2"
jsonschema = "^4.6.0"
manubot = "^0.5.3"
citeproc-py = "^0.6.0"
ratelimit = "^2.2.1"
python-slugify = "^6.1.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
vulture = "^2.5"
bandit = "^1.7.4"
isort = {extras = ["jupyter"], version = "^5.10.1"}
black = {extras = ["jupyter"], version = "^22.3.0"}
safety = "^2.1.1"
mypy = {extras = ["jupyter"], version = "^0.971"}
pylint = "^2.13.7"
nbqa = "^1.3.1"
nbconvert = "^6.5.0"
nb-black = "^1.0.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"