-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
138 lines (102 loc) · 2.71 KB
/
pyproject.toml
File metadata and controls
138 lines (102 loc) · 2.71 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[tool.poetry]
name = "gitman"
version = "3.8.1"
description = "A language-agnostic dependency manager using Git."
license = "MIT"
authors = ["Jace Browning <jacebrowning@gmail.com>"]
readme = "README.md"
homepage = "https://pypi.org/project/gitman"
documentation = "https://gitman.readthedocs.io"
repository = "https://github.com/jacebrowning/gitman"
keywords = [
"git",
"version control",
"build systems",
"dependency management",
"submodules",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control",
"Topic :: System :: Software Distribution",
]
[tool.poetry.dependencies]
python = "^3.10,<3.15"
datafiles = "^2.3.1"
minilog = "^2.3.1"
universal-startfile = ">=0.2,<0.5"
[tool.poetry.group.dev.dependencies]
# Formatters
black = ">=24.8,<27.0"
isort = ">=5.13,<9.0"
# Linters
mypy = "^1.3"
pydocstyle = "*"
pylint = ">=3.3,<4.1"
types-freezegun = "*"
types-setuptools = "*"
# Testing
pytest = ">=8.3,<10.0"
pytest-cov = ">=5,<8"
pytest-describe = ">=2.2,<4.0"
pytest-expecter = "^3.0"
pytest-random = "*"
freezegun = "*"
# Reports
coveragespace = "^6.2"
# Documentation
mkdocs = "^1.2.3"
mkdocstrings = ">=0.18.1,<1.1.0"
mkdocstrings-python = "*"
pygments = "^2.15.0"
jinja2 = "~3.1.6"
# Tooling
pyinstaller = "^6.15"
sniffer = "*"
macfsevents = { version = "*", platform = "darwin", python = "<3.13" }
pync = { version = "*", platform = "darwin" }
rope = ">=0.14,<1.15"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.poetry.scripts]
gitman = "gitman.cli:main"
git-deps = "gitman.plugin:main"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true
cache_dir = ".cache/mypy/"
plugins = "datafiles.plugins:mypy"
[tool.pytest.ini_options]
addopts = """
--strict-markers
-r sxX
--show-capture=log
--cov=gitman
--cov-report=html
--cov-report=term-missing:skip-covered
--no-cov-on-fail
"""
cache_dir = ".cache/pytest/"
markers = ["integration"]
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"