-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
49 lines (39 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
# Project Config
[project]
name = "darkdetect"
description = "Detect OS Dark Mode from Python"
readme = "README.md"
requires-python = ">=3.6"
dynamic = [ "version" ]
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.license]
text = "BSD-3-Clause"
[[project.authors]]
name = "Alberto Sottile"
email = "[email protected]"
[project.urls]
homepage = "http://github.com/albertosottile/darkdetect"
download = "http://github.com/albertosottile/darkdetect/releases"
[project.optional-dependencies]
macos-listener = [ "pyobjc-framework-Cocoa; platform_system == 'Darwin'" ]
# Tool Config
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic.version]
attr = "darkdetect.__version__"
[tool.setuptools.packages.find]
namespaces = false