-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (60 loc) · 1.87 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 = "sv_ttk_colorizer",
version = "1.3.2",
python_requires = ">=3.8",
license = "MIT",
author = "Valer100",
description = "A module for changing the accent color of @rdbende's Sun Valley ttk theme.",
url = "https://github.com/Valer100/Sun-Valley-Theme-Colorizer",
project_urls = {
"Source": "https://github.com/Valer100/Sun-Valley-Theme-Colorizer",
"Issues": "https://github.com/Valer100/Sun-Valley-Theme-Colorizer/issues",
},
packages = find_packages(),
install_requires = [
"darkdetect",
"Pillow",
"requests",
"pywinstyles",
"sv_ttk",
"appdirs",
"tkscrollframe"
],
package_data={
"sv_ttk_colorizer": ["resources/*", "resources/dark/*", "resources/hue_scale/*", "resources/icon/*", "resources/light/*", "resources/theme_switcher/*"]
},
entry_points = {
"console_scripts": [
"sv_ttk_colorizer = sv_ttk_colorizer:main",
"sv_ttk_c = sv_ttk_colorizer:main"
],
},
long_description = description,
long_description_content_type = "text/markdown",
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: User Interfaces",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords = [
"sv-ttk",
"sv-ttk-colorizer",
"sv-ttk-c",
"sv_ttk_colorizer",
"sv_ttk_c",
"theme",
"tk",
"ttk",
"tkinter",
"modern",
"fluent",
"dark-theme",
"sun-valley",
"windows-11",
"winui",
],
)