-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replace setup.py with pyproject.toml
- Loading branch information
1 parent
fb771de
commit dcb0443
Showing
13 changed files
with
436 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "taipy-config" | ||
version = "0.0.0" # will be dynamically set | ||
description = "A Taipy package dedicated to easily configure a Taipy application." | ||
readme = "package_desc.md" | ||
requires-python = ">=3.8" | ||
license = {text = "Apache License 2.0"} | ||
keywords = ["taipy-config"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"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", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development", | ||
"Topic :: Scientific/Engineering", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
] | ||
|
||
dependencies = [ | ||
"toml>=0.10,<0.11", | ||
"deepdiff>=6.7,<6.8" | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest>=3.8" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://www.taipy.io" | ||
Documentation = "https://docs.taipy.io" | ||
Source = "https://github.com/Avaiga/taipy" | ||
Download = "https://pypi.org/project/taipy/#files" | ||
Tracker = "https://github.com/Avaiga/taipy/issues" | ||
Security = "https://github.com/Avaiga/taipy?tab=security-ov-file#readme" | ||
"Release notes" = "https://docs.taipy.io/en/release-0.0.0/relnotes/" # version will be dynamically set | ||
|
||
[tool.setuptools.packages] | ||
find = {where = ["."], include = ["taipy", "taipy.config", "taipy.config.*", "taipy.logger", "taipy.logger.*"]} | ||
|
||
[tool.setuptools.package-data] | ||
"version" = ["version.json"] | ||
|
||
[tool.setuptools] | ||
zip-safe = false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel", ] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "taipy-core" | ||
version = "0.0.0" # will be dynamically set | ||
description = "A Python library to build powerful and customized data-driven back-end applications." | ||
readme = "package_desc.md" | ||
requires-python = ">=3.8" | ||
keywords = ["taipy-core", ] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"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", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development", | ||
"Topic :: Scientific/Engineering", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
] | ||
|
||
dependencies = [] # will be dynamically set | ||
|
||
[project.license] | ||
text = "Apache License 2.0" | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest>=3.8", ] | ||
mssql = ["pyodbc>=4,<4.1", ] | ||
mysql = ["pymysql>1,<1.1", ] | ||
postgresql = ["psycopg2>2.9,<2.10", ] | ||
parquet = ["fastparquet==2022.11.0", "pyarrow>=14.0.2,<15.0", ] | ||
s3 = ["boto3==1.29.1", ] | ||
mongo = ["pymongo[srv]>=4.2.0,<5.0", ] | ||
|
||
[project.urls] | ||
Homepage = "https://www.taipy.io" | ||
Documentation = "https://docs.taipy.io" | ||
Source = "https://github.com/Avaiga/taipy" | ||
Download = "https://pypi.org/project/taipy/#files" | ||
Tracker = "https://github.com/Avaiga/taipy/issues" | ||
Security = "https://github.com/Avaiga/taipy?tab=security-ov-file#readme" | ||
"Release notes" = "https://docs.taipy.io/en/release-4.0.0.dev0/relnotes/" | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
|
||
[tool.setuptools.package-data] | ||
taipy = ["version.json", ] | ||
|
||
[tool.setuptools.packages.find] | ||
where = [".", ] | ||
include = ["taipy", "taipy.core", "taipy.core.*", ] |
Oops, something went wrong.