-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (36 loc) · 1.4 KB
/
setup.py
File metadata and controls
executable file
·39 lines (36 loc) · 1.4 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
import pathlib
from setuptools import setup, find_namespace_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="tkinterweb",
version="4.25.2",
python_requires=">=3.2",
description="HTML/CSS widgets for Tkinter",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Andereoo/TkinterWeb",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
],
keywords="tkinter, Tkinter, tkhtml, Tkhtml, Tk, HTML, CSS, webbrowser",
packages=find_namespace_packages(include=["tkinterweb", "tkinterweb.*"]),
include_package_data=True,
install_requires=["tkinterweb-tkhtml>=2.1.1"],
extras_require = {
"html": ["tkinterweb-tkhtml-extras>=1.3.1"],
"images": ["pillow"],
"svg": ["tkinterweb-tkhtml-extras>=1.3.1", "pillow", "cairosvg"],
"javascript": ["pythonmonkey"],
"requests": ["brotli"],
"recommended": ["tkinterweb-tkhtml-extras>=1.3.1", "pillow"],
"full": ["tkinterweb-tkhtml-extras>=1.3.1", "pillow", "cairosvg", "pythonmonkey", "brotli"],
},
)