Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[build-system]
requires = [
"setuptools>=60",
"setuptools>=80",
"setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pyplaid"
authors = [{name = "Safran", email = "[email protected]"}]
description = "A package that implements a data model tailored for AI and ML in the context of physics problems"
requires-python = ">=3.11, <3.14"
requires-python = ">=3.11, <=3.14.3"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not <3.15 ? You specifically want to filter out versions above 3.14.4 ?

Copy link
Copy Markdown
Contributor Author

@williampiat3 williampiat3 May 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True! I wanted to limit to the current python version but it is indeed too restrictive

keywords=[
"machine learning",
"physics",
Expand All @@ -17,11 +17,11 @@ keywords=[
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
Expand All @@ -40,6 +40,9 @@ dependencies = [

dynamic = ["version"]

license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]

[tool.setuptools_scm]
write_to = "src/plaid/_version.py"

Expand All @@ -48,10 +51,6 @@ homepage = "https://plaid-lib.github.io"
documentation = "https://plaid-lib.readthedocs.io"
repository = "https://github.com/PLAID-lib/plaid"

[project.license]
text="BSD 3-Clause License"
files=["LICENSE.txt"]

[project.readme]
file="README.md"
content-type = "text/markdown"
Expand Down
Loading