-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.09 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
[project]
name = "flickr_api"
version = "0.8.0"
description = "Python wrapper for the Flickr API"
readme = "README.md"
license = "BSD-3-Clause"
authors = [
{ name = "Alexis Mignon", email = "alexis.mignon@gmail.com" }
]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"requests",
"requests-oauthlib",
]
[project.urls]
Homepage = "https://github.com/alexis-mignon/python-flickr-api"
Repository = "https://github.com/alexis-mignon/python-flickr-api"
[dependency-groups]
dev = [
"pytest",
"flake8",
"ruff",
"mypy",
"types-requests",
"twine",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["flickr_api"]
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.ruff]
line-length = 100