generated from abraham-ai/marsbots-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 776 Bytes
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 = "marsbots_launcher"
version = "0.1.0"
description = ""
authors = ["Jonathan Miller <jon@jmill.dev>"]
[tool.poetry.dependencies]
python = "^3.9"
supervisor = "^4.2.4"
superfsmon = "^1.2.1"
aleph-alpha-client = "^1.7.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
ipykernel = "^5.3.3"
mypy = "^0.910"
pytest = "^6.2.4"
pre-commit = "^2.13.0"
flake8 = "^3.9.2"
notebook = "^6.4.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| nbs
)/
'''