Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
recursive-include cpp_source *.hpp
recursive-include irspack *.pyi
recursive-include src/irspack *.pyi
include src/irspack/py.typed
15 changes: 13 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,22 @@ readme = "Readme.md"
authors = [
{ name = "Tomoki Ohtsuki", email = "tomoki.ohtsuki.19937@outlook.jp" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"httpx",
"gidgethub[httpx]>4.0.0",
"numpy >= 2.0",
"fastprogress >= 0.2",
"fastprogress>=0.2,<=1.0.5",
"optuna>=2.5.0",
"pandas>=2.2.0",
"scikit-learn>=0.21.0",
Expand All @@ -31,7 +42,7 @@ build-dir = "build/{wheel_tag}"
# Build stable ABI wheels for CPython 3.12+
wheel.py-api = "cp312"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["src/irspack/_version.py"]
sdist.include = ["src/irspack/_version.py", "src/irspack/**/*.pyi", "src/irspack/py.typed"]


[build-system]
Expand Down
File renamed without changes.
Loading