forked from israel-dryer/ttkbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.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
"""
Because I'm using importlib.resources, which did not exist until python 3.7, this does not support < 3.7 unless I can
figure out another method for importing package resources.
"""
import setuptools
long_description = """
A collection of modern flat themes inspired by Bootstrap. There are more than a dozen built-in themes, and you also have
the ability to easily create your own.
## Links
- **Documentation:** https://ttkbootstrap.readthedocs.io/en/latest/
- **GitHub:** https://github.com/israel-dryer/ttkbootstrap
"""
setuptools.setup(
name="ttkbootstrap",
version="0.4.6",
author="Israel Dryer",
author_email="[email protected]",
description="A collection of modern ttk themes inspired by Bootstrap",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
url="https://github.com/israel-dryer/ttkbootstrap",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
package_data={"": ["*.json", "*.ttf"]},
include_package_data=True,
install_requires=["pillow>=8.2.0"],
python_requires=">=3.6",
)