-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
72 lines (60 loc) · 1.87 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
description = "python based access to Thunderbird mail with nicegui frontend"
keywords = [ "nicegui", "thunderbird", "mail" ]
name = "pyThunderbird"
authors = [
{ name = "Wolfgang Fahl", email = "wf@bitplan.com" }
]
maintainers = [
{ name = "Wolfgang Fahl", email = "wf@bitplan.com" }
]
dependencies= [
"pylodstorage>=0.12.2",
"PyYAML>=6.0",
# https://github.com/WolfgangFahl/nicegui_widgets
"ngwidgets>=0.17.2",
# ftfy 6.1.3
"ftfy>=6.1.3",
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
dynamic = ["version"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License"
]
[tool.hatch.version]
path = "thunderbird/__init__.py"
[project.urls]
Home = "https://github.com/WolfgangFahl/pyThunderbird"
Documentation = "http://wiki.bitplan.com/index.php/PyThunderbird"
Source = "https://github.com/WolfgangFahl/pyThunderbird/blob/master/thunderbird/mail.py"
IssueTracker = "https://github.com/WolfgangFahl/pyThunderbird/issues"
[project.optional-dependencies]
test = [
"green",
]
[tool.isort]
profile = "black"
[tool.hatch.build.targets.wheel]
only-include = ["thunderbird"]
[tool.hatch.build.targets.wheel.sources]
"thunderbird" = "thunderbird"
[project.scripts]
tbmail = "thunderbird.mail_cmd:main"
ghget = "thunderbird.github:main"