-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.04 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
[tool.poetry]
name = "nixos-compose"
version = "0.6.0"
description = ""
authors = ["Olivier Richard <olivier.richard@imag.fr>"]
license = "MIT"
include = [
{ path = 'examples', format = 'wheel' },
{ path = 'nix', format = 'wheel' },
#{ path = 'tools', format = 'wheel' }
{ path = 'examples', format = 'sdist' },
{ path = 'nix', format = 'sdist' }
#{ path = 'tools', format = 'sdist' }
]
[tool.poetry.dependencies]
python = "^3.7"
halo = "^0.0.31"
ptpython = "^3.0.7"
click = ">=7.1.2"
pyinotify = "^0.9.6"
pexpect = "^4.8.0"
psutil = "^5.9.0"
PyYAML = "^6.0"
execo = "^2.6.8"
requests = "^2.27.1"
tomlkit = "^0.11"
[tool.poetry.scripts]
nixos-compose = 'nixos_compose.cli:main'
nxc = 'nixos_compose.cli:main'
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pre-commit = { version = "^2.6", python = "^3.6.1" }
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| nix
| examples
)/
'''
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"