-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
86 lines (77 loc) · 2.5 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "macos-notifications"
authors = [{name = "Jorrick Sleijster", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Environment :: MacOS X",
"Environment :: MacOS X :: Aqua",
"Environment :: MacOS X :: Carbon",
"Environment :: MacOS X :: Cocoa",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = [
"pyobjc-core>=9.1.1",
"pyobjc-framework-Cocoa>=9.1.1",
]
[project.optional-dependencies]
test = [
"flake8 >=4.0.0,<5.0.0",
"black >= 22.6.0,<23.0.0",
"isort >=5.10.1,<6.0.0",
"mypy ==0.910",
]
doc = [
"mkdocs >=1.3.0,<2.0.0",
"mkdocs-material >=8.3.9,<9.0.0",
"mkdocstrings[python] >=0.19.0,<1.0.0",
"termynal >=0.2.0,<1.0.0",
]
dev = [
"pre-commit >=2.19.0,<3.0.0",
]
[project.urls]
Home = "https://github.com/Jorricks/macos-notifications"
Documentation = "https://jorricks.github.io/macos-notifications"
Source = "https://github.com/Jorricks/macos-notifications"
PullRequests = "https://github.com/Jorricks/macos-notifications/pulls"
Issues = "https://github.com/Jorricks/macos-notifications/issues"
[tool.flit.module]
name = "mac_notifications"
[tool.black]
line-length=120
target-version=['py38']
[tool.isort]
line_length = 120
multi_line_output = 3
force_alphabetical_sort_within_sections = "True"
force_sort_within_sections = "False"
known_macnotify = ["mac_notifications"]
sections=["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER", "MACNOTIFY"]
profile = "black"
add_imports = ["from __future__ import annotations"]
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = "True"
scripts_are_modules = "True"