-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "autojail"
version = "0.1.0"
description = "Automatic jailhouse configuration for ARM based SOCs"
authors = ["Christoph Gerum <christoph.gerum@uni-tuebingen.de>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6.1"
pydantic = "^1.4"
pyfdt = "^0.3"
cleo = "^0.8.0"
pyserial = "^3.4"
"ruamel.yaml" = "^0.16.10"
fabric = "^2.5.0"
simpleeval = "^0.9.10"
tabulate = "^0.8.7"
fdt = "^0.2.0"
#automate = {git = "git@atreus.informatik.uni-tuebingen.de:ties/timing/schrank/automate.git", optional = true}
mako = "^1.1.3"
ortools = "^8.0.8283"
fuzzywuzzy = "^0.18.0"
python-Levenshtein = "^0.12.0"
typing-extensions = "^3.7.4"
rich = "^9.10.0"
pandas = "^1.1.0"
[tool.poetry.extras]
#automate = ["automate"]
[tool.poetry.dev-dependencies]
invoke = "^1.4.0"
mkdocs = "^1.0.4"
black = {version = "^19.10b0", allow-prereleases = true}
flake8 = "^3.7.9"
mypy = "^0.800"
pytest = "^5.3.5"
devtools = {version = "^0.5.1", extras = ["pygments"]}
beautifulsoup4 = "^4.8.2"
mkdocs-mermaid-plugin = {git = "https://github.com/pugong/mkdocs-mermaid-plugin.git"}
mkdocs-material = "^4.6.3"
mccabe = "^0.6.1"
flake8-bugbear = "^20.1.4"
pep8-naming = "^0.11.1"
pytest-cov = "^2.10.0"
isort = "^5.2.0"
monkeytype = "^20.5.0"
pre-commit = "^1.21.0"
pytest-coverage = "^0.0"
darglint = "^1.6.0"
[tool.poetry.scripts]
autojail = 'autojail.main:app.run'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"