-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (60 loc) · 2.25 KB
/
setup.py
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
from setuptools import setup, find_packages
description = open("README.md", "r", encoding = "utf8").read()
setup(
name = "winaccent",
version = "2.1.0",
license = "MIT",
author = "Valer100",
maintainer = "Valer100",
description = "A simple and lightweight Python module for easily retrieving Windows' accent color, including shades, specific window chrome colors such as active/inactive titlebar and window borders and theme. Supports Windows 8.x, 10 and 11 and doesn't require additional dependencies.",
url = "https://github.com/Valer100/winaccent",
python_requires = ">=3.6",
project_urls = {
"Source": "https://github.com/Valer100/winaccent",
"Documentation": "https://github.com/Valer100/winaccent?tab=readme-ov-file#-documentation",
"Issues": "https://github.com/Valer100/winaccent/issues",
},
packages = find_packages(),
long_description = description,
long_description_content_type = "text/markdown",
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
],
keywords = [
"accent",
"accent-light",
"accent-dark",
"accent-color"
"accent-palette",
"dark-mode",
"light-mode",
"system-theme",
"color",
"theme",
"modern",
"gui",
"win32",
"fluent",
"sun-valley",
"windows-11",
"windows-10",
"windows-8",
"winui",
"winaccent"
],
)