-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
83 lines (70 loc) · 1.92 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
[tool.poetry]
name = "seaport"
version = "0.10.1"
description = "The modern MacPorts portfile updater"
authors = ["harens <[email protected]>"]
maintainers = ["harens <[email protected]>"]
readme = "README.rst"
license = "BSD-3-Clause"
include = ["seaport/py.typed"]
keywords = ["MacPorts", "Port", "Bump", "Checksums"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Typing :: Typed"
]
homepage = "https://seaport.rtfd.io/"
repository = "https://github.com/harens/seaport"
documentation = "https://seaport.rtfd.io/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/harens/seaport/issues"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
click = "^8.1.3"
beartype = ">=0.12,<0.15"
typing-extensions = { version = ">=4.0.0, <5.0", python = "<3.9" }
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
black = "^23.3.0"
isort = "~5.11.5"
mypy = "^1.4.1"
pytest-subprocess = "^1.5.0"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
coverage = "^7.2.7"
pydocstyle = "^6.3.0"
pre-commit = "~2.21.0"
pyupgrade = "~3.3.2"
Sphinx = "~5.3.0"
sphinx-autobuild = "^2021.3.14"
sphinx-click = "^4.4.0"
sphinxcontrib-programoutput = "^0.17"
commitizen = "^3.8.0"
[tool.poetry.scripts]
seaport = "seaport._init:seaport"
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
# See https://pycqa.github.io/isort/docs/configuration/black_compatibility/
[tool.isort]
profile = "black"
multi_line_output = 3
# See https://black.readthedocs.io/en/stable/compatible_configs.html#pylint
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"
[tool.black]
target-version = ["py37"]
[tool.commitizen]
version = "0.10.1"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"seaport/__init__.py",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"