-
Notifications
You must be signed in to change notification settings - Fork 112
/
setup.py
60 lines (56 loc) · 1.83 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
import re
from pathlib import Path
from setuptools import setup
long_description = re.sub(
r"(?s)<picture>.*</picture>",
'<img alt="Cover image" src="https://raw.githubusercontent.com/rdbende/Sun-Valley-ttk-theme/master/assets/hero_light.png">',
(Path(__file__).parent / "README.md").read_text(),
)
setup(
name="sv_ttk",
version="2.6.0",
license="MIT",
author="rdbende",
author_email="[email protected]",
url="https://github.com/rdbende/Sun-Valley-ttk-theme",
project_urls={
"Source": "https://github.com/rdbende/Sun-Valley-ttk-theme",
"Documentation": "https://github.com/rdbende/Sun-Valley-ttk-theme/wiki",
"Tracker": "https://github.com/rdbende/Sun-Valley-ttk-theme/issues",
},
description="A gorgeous theme for Tkinter, based on Windows 11's UI",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["sv_ttk"],
package_data={"sv_ttk": ["sv.tcl", "theme/*", "py.typed"]},
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: User Interfaces",
"Programming Language :: Python :: 3 :: Only",
"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 :: Tcl",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=[
"sv-ttk",
"tcl",
"tcl/tk",
"theme",
"tile",
"tk",
"ttk",
"tkinter",
"modern",
"fluent",
"dark-theme",
"sun-valley",
"windows-11",
"winui",
],
)