1234567891011121314151617181920212223 |
- [build-system]
- requires = [ "setuptools" ]
- [project]
- name = "example_library"
- version = "1.0.0"
- authors = [ { name = "Taipy" } ]
- description = "A Taipy GUI extension library example."
- readme = { file = "README.md", content-type = "text/markdown" }
- requires-python = ">=3.9"
- keywords = [ "taipy" ]
- license = { text = "Apache License 2.0" }
- classifiers = [
- "Intended Audience :: Developers",
- # "License :: OSI Approved :: Apache Software License",
- "Natural Language :: English",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- ]
- dependencies = [ "taipy-gui>=2.2" ]
|