-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.35 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
[build-system]
requires = ["setuptools>=75.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "timezones_cli"
version = "0.3.8"
description = "Get local datetime from multiple timezones!"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Yankee Maharjan" }
]
urls = { homepage = "https://github.com/yankeexe/timezones-cli" }
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"click==8.1.5",
"tabulate==0.9.0",
"rich<=7.1.0",
"pycountry==22.3.5",
"pytz",
"simple-term-menu==1.6.1",
"tzlocal==2.1",
"thefuzz[speedup]",
]
[project.optional-dependencies]
dev = [
"pytest>=6.2.5",
"black<=20.8b1",
"pre-commit",
"mypy",
"freezegun",
"flake8",
"types-pytz",
"types-tzlocal",
"types-tabulate",
]
[project.scripts]
tz = "timezones_cli.main:cli"
[tool.setuptools]
packages = [
"timezones_cli",
"timezones_cli.commands",
"timezones_cli.utils"
]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.exclude-package-data]
"*" = ["tests/*", "dist/*", "build/*", "*.egg-info/*"]
[dependency-groups]
build = [
"setuptools>=75.8.0",
]