-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
105 lines (94 loc) · 2.43 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = [
"hatchling>=1.10.0",
]
build-backend = "hatchling.build"
[project]
name = "timezone-converter"
version = "0.15.0"
description = "Compare your local timezone with foreign ones."
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
authors = [
{ name = "Iago Alonso", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Terminals",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.9"
dependencies = [
"pytz>=2024.1",
"rich>=13.9.4",
]
[project.scripts]
timezone-converter = "timezone_converter.main:main"
[project.urls]
Homepage = "https://github.com/ibLeDy/timezone-converter"
[tool.hatch.build.targets.sdist]
include = [
"timezone_converter",
]
exclude = [
"tests*",
]
[tool.hatch.build.targets.wheel]
packages = [
"timezone_converter",
]
[tool.mypy]
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
no_implicit_reexport = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.coverage.run]
plugins = "covdefaults"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39, py310, py311, py312, py313
isolated_build = True
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
commands =
timezone-converter
timezone-converter --help
timezone-converter tijuana
timezone-converter tijuana --single
timezone-converter tijuana --single 14
timezone-converter tijuana new_york
timezone-converter tijuana new_york --single
timezone-converter tijuana --zone
timezone-converter tijuana --list
timezone-converter tijuana --list tbd
"""