-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.08 KB
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
[build-system]
requires = [
"setuptools >= 61.0",
"pywin32",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"RemoveWindowsLockScreenAds",
]
[project]
name = "RemoveWindowsLockScreenAds"
version = "0.5.1"
authors = [
{ name="Branden Clark", email="clark@rpis.ec" },
]
description = "Remove Windows lock screen ads/Spotlight ads while keeping the rotating Spotlight image backgrounds."
readme = "README.md"
license = { text="MIT" }
requires-python = ">=3.7"
dependencies = [
"pywin32",
]
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
]
keywords = [
"windows-spotlight",
"remove-ads",
"windows-lockscreen",
]
[project.urls]
"Homepage" = "https://github.com/clarkb7/RemoveWindowsLockScreenAds"
"Bug Tracker" = "https://github.com/clarkb7/RemoveWindowsLockScreenAds/issues"