Skip to content

🔧 scipy.org as homepage and add scipy-dev as maintainer #440

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 29, 2025
Merged
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
27 changes: 16 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
requires = ["hatchling"]
build-backend = "hatchling.build"


[project]
name = "scipy-stubs"
version = "1.15.1.1.dev0"
Expand All @@ -10,6 +11,10 @@ readme = "README.md"
authors = [
{name = "Joren Hammudoglu", email = "[email protected]"},
]
maintainers = [
{name = "SciPy Developers", email = "[email protected]"},
{name = "Joren Hammudoglu", email = "[email protected]"},
]
license = "BSD-3-Clause"
keywords = ["scipy", "typing", "pep484"]
classifiers = [
Expand All @@ -28,9 +33,17 @@ classifiers = [
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"optype>=0.9.0",
]
dependencies = ["optype>=0.9.0"]

[project.optional-dependencies]
scipy = ["scipy>=1.15.1,<1.16"]

[project.urls]
Homepage = "https://scipy.org/"
Repository = "https://github.com/jorenham/scipy-stubs/"
Issues = "https://github.com/jorenham/scipy-stubs/issues"
Changelog = "https://github.com/jorenham/scipy-stubs/releases"


[dependency-groups]
extras = ["scipy-stubs[scipy]"]
Expand Down Expand Up @@ -59,14 +72,6 @@ dev = [
{include-group = "type"},
]

[project.optional-dependencies]
scipy = ["scipy>=1.15.1,<1.16"]

[project.urls]
Repository = "https://github.com/jorenham/scipy-stubs/"
Issues = "https://github.com/jorenham/scipy-stubs/issues"
Changelog = "https://github.com/jorenham/scipy-stubs/releases"
Funding = "https://github.com/sponsors/jorenham"

[tool.hatch.build]
packages = ["scipy-stubs"]
Expand Down