-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (42 loc) · 1.2 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
[project]
name = "XenXenXenSe"
version = "1.3.14"
description = "An easy-to-use HTTP API of XenAPI for Web Application Developers."
authors = [
"Alex4386 <[email protected]>",
"zeroday0619 <[email protected]>"
]
license = "MIT"
readme = "README.md"
python = "^3.7"
homepage = "https://github.com/Stella-IT/XenXenXenSe"
repository = "https://github.com/Stella-IT/XenXenXenSe"
documentation = "https://github.com/Stella-IT/XenXenXenSe"
keywords = ["xenapi", "http", "api"]
target-version = ['py37','py38','py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv # Python virtual envs
| \.idea # Jetbrains IDEA-based IDEs
| \.github # GitHub CI
| _build
| buck-out
| build
| dist
| demonstration # Repository specific: code demo resources
| __pycache__ # Python JIT Compile caches
)/
# | foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.isort]
profile = "black"
known_third_party = ["fastapi", "pydantic", "starlette"]