-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.42 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
[tool.poetry]
name = "flickr-download"
version = "0.3.8"
description = "Download photos from Flickr"
authors = ["Allan Beaufour <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
packages = [{ include = "flickr_download" }]
repository = "https://github.com/beaufour/flickr-download"
[tool.poetry.scripts]
flickr_download = "flickr_download.flick_download:main"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
flickr-api = "^0.7.7"
python-dateutil = "^2.8.1"
PyYAML = ">=5.3,<7.0"
pathvalidate = ">=2.5.2,<4.0.0"
importlib-metadata = { version = "~4.2.0", python = "<3.8" }
interrogate = "^1.5.0"
usingversion = "^0.1.2"
setuptools = "^75.1.0"
[tool.poetry.group.extras.dependencies]
coverage = ">=6.5,<8.0"
python-coveralls = "^2.9.3"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2,<9.0"
flake8 = ">=4.0.1,<8.0.0"
black = ">=22.8,<25.0"
pre-commit = ">=2.20,<5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_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.interrogate]
exclude = ["tests"]