generated from Avaiga/guiext-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 918 Bytes
/
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
from setuptools import find_packages, setup
setup(
author="You Name",
author_email="your@email.domain",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
# "License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
# license="Apache License 2.0",
install_requires=["taipy-gui>=2.0"],
include_package_data=True,
name="guiext-library",
description="My taipy-gui extension demo",
long_description="This package contains a demonstration of using the Taipy GUI Extension API.",
keywords="taipy",
packages=find_packages(include=["demo_lib", "demo_lib.*"]),
version="1.0.0",
zip_safe=False
)