-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
101 lines (81 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[tool.poetry]
name = "pyopenair"
version = "1.2.1"
authors = ["lpofredc <[email protected]>"]
description = "A simple python package to convert geo data to OpenAir format"
license = "AGPL-3.0-or-later"
readme = "README.rst"
homepage = "https://github.com/lpoaura/pyopenair"
repository = "https://github.com/lpoaura/pyopenair"
documentation = "https://pyopenair.readthedocs.io"
keywords = ["openair", "paragliding", "wkt2openair", "geo2openair", "airspace"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/lpoaura/pyopenair/issues"
[tool.poetry.scripts]
pyopenair = "pyopenair.main:cli"
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
Shapely = "^2.0.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
mypy = "^0.991"
black = "^22.12.0"
pylint = "^2.15.10"
isort = "^5.11.4"
pre-commit = "^3.4.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^1.1.1"
sphinx = "^4.3.2"
pygments = "^2.14.0"
[tool.isort]
profile = "black"
line_length = 79
multi_line_output = 3
include_trailing_comma = true
[tool.black]
line-length = 79
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.pylint."MESSAGES CONTROL"]
disable = [
"too-many-arguments",
"too-many-locals",
"protected-access"
]
good-names = [
"an",
"ac",
"i"
]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]