-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.37 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "modelon-impact-client"
packages = [
{ include = "modelon" },
]
version = "0.0.1"
description = "Client library for easy scripting against Modelon Impact"
readme = "README.md"
homepage = "https://www.modelon.com/modelon-impact"
repository = "https://github.com/modelon-community/impact-client-python"
documentation = "https://modelon-impact-client.readthedocs.io"
license = "BSD"
authors = [
"WEP <impact@modelon.com>"
]
classifiers = [
"Programming Language :: Python :: 3.8"
]
include = [
]
keywords = ["impact", "client", "API"]
[tool.poetry.dependencies]
python = "^3.8.0"
requests = "^2.23"
semantic_version = "^2.8.5"
types-requests = "^2.27.30"
typing-extensions = "^4.12.2"
[tool.poetry.group.dev.dependencies]
mypy = "*"
flake8 = "^5.0.4"
black = "^22.10.0"
pylint = "^2.15.5"
isort = "^5.12.0"
docformatter = {extras = ["tomli"], version = "^1.7.5"}
pytest = "^7.2.0"
pytest-watch = "^4.2.0"
pytest-cov = "^4.0.0"
click = "^8.1.3"
toml = "^0.10.2"
requests_mock = "^1.10"
vcrpy = "^6.0.1"
pytest-vcr = "^1.0.2"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.0.0"
sphinx-rtd-theme = "^2.0.0"
sphinx-copybutton = "^0.5.1"
sphinxcontrib-napoleon = "^0.7"
sphinxcontrib-spelling = "^7.7.0"
readthedocs-sphinx-search = "^0.3.1"
sphinx-autodoc-typehints = "^1.22"
[tool.docformatter]
recursive = true
blank = true
black = true
[tool.isort]
profile = "black"