forked from aerupt/whenareyou
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
32 lines (28 loc) · 829 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
[project]
name = "whenareyou"
version = "0.7.2"
description = "Gets the time zone name of any location in the world."
authors = [
{ name = "Florian Obersteiner", email = "f.obersteiner@posteo.de" },
{ name = "Lasse Schuirmann", email = "lasse.schuirmann@gmail.com" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["timezonefinder>=6.0.0"]
[dependency-groups]
dev = ["black>=24.10.0", "pytest>=8.3.4", "ruff>=0.9.1"]
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311", "py312"]
[tool.ruff]
lint.ignore = ["E501"]
lint.extend-select = ["C4", "SIM"]
target-version = "py312"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"