-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (52 loc) · 1.46 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
60
[tool.poetry]
name = "fuselage"
version = "3.1.2"
description = "Orchestration and configuration management in Python"
authors = ["Isotoma Limited <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/yaybu/fuselage"
repository = "https://github.com/yaybu/fuselage"
keywords = ["devops","automation"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.extras]
ssh = ["paramiko"]
[tool.poetry.dependencies]
python = "^3.8.1"
paramiko = {version = "^2.7.2", optional = true}
[tool.poetry.dev-dependencies]
fakechroot = ">=0.2.1"
unittest2 = "^1.1.0"
isort = "^5.4.0"
black = "^22.3.0"
flake8 = "^6.0.0"
pytest = "^6.0.0"
coverage = "^5.0.3"
codecov = "^2.0.15"
pyupgrade = "^2.7.2"
apache-libcloud = "^3.1.0"
pytest-cov = "^2.12.1"
[tool.isort]
profile = "black"
indent = " "
force_sort_within_sections = true
sections = "FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
known_first_party = "fuselage,tests"
forced_separate = "tests"
combine_as_imports = true
[tool.coverage.run]
omit = ["tests/*"]
[tool.black]
target-version = ["py37", "py38"]
[tool.poetry.scripts]
fuselage = "fuselage.main:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"