-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (45 loc) · 950 Bytes
/
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
[tool.poetry]
name = "git_extract"
version = "1.1.5"
description = "Extract files or directories from a git repository"
authors = ["Marc Ford <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mfdeux/git-extract"
packages = [{ include = "git_extract" }]
[tool.poetry.dependencies]
python = "^3.8"
GitPython = "^3.1.7"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
ipython = "^7.17.0"
black = "^19.10b0"
isort = "^5.3.0"
[tool.poetry.scripts]
git-extract = "git_extract.cli:cli"
[tool.black]
# https://github.com/psf/black
line-length = 88
target_version = ['py38']
exclude = '''
(
/(
\.git
| \.mypy_cache
| \.pytest_cache
| htmlcov
| venv
| .venv
)/
)
'''
[tool.isort]
line_length = 88
indent = ' '
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"