-
Notifications
You must be signed in to change notification settings - Fork 58
/
pyproject.toml
62 lines (56 loc) · 1.65 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
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "tzlocal"
description = "tzinfo object for the local timezone"
readme = "README.rst"
version = "5.3.dev0"
authors = [{name = "Lennart Regebro", email = "[email protected]"}]
license = {text = "MIT"}
keywords = ["timezone"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Typing :: Typed",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.8"
dependencies = [
"backports.zoneinfo; python_version < '3.9'",
"tzdata; platform_system == 'Windows'",
]
[project.urls]
"Source code" = "https://github.com/regebro/tzlocal"
Changelog = "https://github.com/regebro/tzlocal/blob/master/CHANGES.txt"
"Issue tracker" = "https://github.com/regebro/tzlocal/issues"
[project.optional-dependencies]
devenv = [
"pytest >= 4.3",
"pytest-mock >= 3.3",
"pytest-cov",
"check_manifest",
"zest.releaser",
]
[tool.ruff]
line-length = 120
select = [
"E", "F", "W", # default flake-8
"I", # isort
"ISC", # flake8-implicit-str-concat
"PGH", # pygrep-hooks
"RUF100", # unused noqa (yesqa)
"UP", # pyupgrade
]
ignore = ["UP015"]
[tool.zest.releaser]
create-wheel = true
[tool.pytest.ini_options]
testpaths = "tests"