-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.25 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
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"
[tool.poetry]
authors = ["Matthew Jones <[email protected]>", "Jesse Jaggars <[email protected]>"]
description = "A flexible multi-service relayer with remote execution and orchestration capabilities linking controllers with executors across a mesh of nodes."
license = "Apache-2.0"
name = "receptor"
repository = "https://github.com/project-receptor/receptor"
version = "1.0.0"
[tool.poetry.dependencies]
aiohttp = ">= 3.6.2, < 4.0"
prometheus_client = ">= 0.7.1, < 0.9"
python = "^3.6"
[tool.poetry.dev-dependencies]
attrs = "^19.3.0"
click = "^7.0"
flake8 = "^3.7.9"
pylint = "^2.4.4"
pyparsing = "^2.4.5"
pytest = "^5.3.2"
pytest-asyncio = "^0.10.0"
pyyaml = "^5.2"
requests = "^2.22.0"
wait-for = "^1.1.1"
receptor-affinity = { git = "https://github.com/project-receptor/affinity.git" }
tox = "^3.14.5"
yamllint = "^1.20.0"
black = "^19.10b0"
psutil = "^5.7.0"
sphinx = "^2.4.4"
[tool.poetry.scripts]
receptor = 'receptor.__main__:main'
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
| installer
| packaging
)/
'''