Skip to content
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

added new dependencies #147

Merged
merged 5 commits into from
Nov 25, 2024
Merged
Changes from 2 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
48 changes: 28 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sunkit_instruments"
description = "A SunPy-affiliated package for solar instrum"
description = "A SunPy-affiliated package for solar instruments"
requires-python = ">=3.10"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "licenses/LICENSE.rst" }
Expand All @@ -18,6 +18,13 @@ authors = [
dependencies = [
"sunpy[map,net,timeseries,visualization]>=6.0.0",
"xarray>=2023.12.0",
"astropy>=5.3.0",
"packaging>=23.0",
"scipy>=1.11.0",
"numpy>=1.24.0",
"h5py>=3.9.0",
"matplotlib>=3.7.0",
"pandas>=2.0.0",
nabobalis marked this conversation as resolved.
Show resolved Hide resolved
]
dynamic = ["version"]

Expand All @@ -37,6 +44,7 @@ docs = [
"sphinx-changelog",
"sphinx-gallery",
]

[project.urls]
repository = "https://sunpy.org"

Expand All @@ -51,14 +59,14 @@ exclude = ["sunkit_instruments._dev*"]
[tool.setuptools_scm]
write_to = "sunkit_instruments/_version.py"

[ tool.gilesbot ]
[ tool.gilesbot.circleci_artifacts ]
[tool.gilesbot]
[tool.gilesbot.circleci_artifacts]
enabled = true

[ tool.gilesbot.pull_requests ]
[tool.gilesbot.pull_requests]
enabled = true

[ tool.gilesbot.towncrier_changelog ]
[tool.gilesbot.towncrier_changelog]
enabled = true
verify_pr_number = true
changelog_skip_label = "No Changelog Entry Needed"
Expand Down Expand Up @@ -88,26 +96,26 @@ write_to = "sunkit_instruments/_version.py"
showcontent = true

[[tool.towncrier.type]]
directory = "removal"
name = "Deprecations and Removals"
showcontent = true
directory = "removal"
name = "Deprecations and Removals"
showcontent = true

[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
directory = "feature"
name = "Features"
showcontent = true

[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
directory = "bugfix"
name = "Bug Fixes"
showcontent = true

[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
directory = "doc"
name = "Improved Documentation"
showcontent = true

[[tool.towncrier.type]]
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = true
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = true
Loading