-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 911 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 911 Bytes
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
"""
A port of [tcl-awthemes] to Python ttk.
"""
from setuptools import setup, find_packages
__version__: str = "0.2.1"
setup(
name="python-awthemes",
version=__version__,
packages=find_packages(),
description="A port of [tcl-awthemes] to Python ttk.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="undecV",
author_email="22562116+undecV@users.noreply.github.com",
license="Zlib",
install_requires=[
"tksvg"
],
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: zlib/libpng License",
"Programming Language :: Tcl",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)