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
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include README* CREDITS COPYING.txt CITATION setupext.py CONTRIBUTING.rst
include README* CREDITS CITATION setupext.py CONTRIBUTING.rst
include yt/visualization/mapserver/html/map.js
include yt/visualization/mapserver/html/map_index.html
include yt/visualization/mapserver/html/Leaflet.Coordinates-0.1.5.css
Expand All @@ -8,7 +8,7 @@ include yt/utilities/mesh_types.yaml
exclude yt/utilities/lib/cykdtree/c_kdtree.cpp
prune tests
prune answer-store
recursive-include yt *.py *.pyx *.pxi *.pxd README* *.txt LICENSE* *.cu
recursive-include yt *.py *.pyx *.pxi *.pxd README* *.txt *.cu
recursive-include doc *.rst *.txt *.py *.ipynb *.png *.jpg *.css *.html
recursive-include doc *.h *.c *.sh *.svgz *.pdf *.svg *.pyx

Expand Down
19 changes: 13 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
# keep in sync with .github/workflows/wheels.yaml
requires = [
"setuptools>=61.2",
"setuptools>=77.0.0",
"Cython>=3.0.3",
"numpy>=2.0.0",
"ewah-bool-utils>=1.2.0",
Expand All @@ -16,16 +16,22 @@ description = "An analysis and visualization toolkit for volumetric data"
authors = [
{ name = "The yt project", email = "yt-dev@python.org" },
]
license = "BSD-3-Clause"
license-files = [
"COPYING.txt",
"yt/frontends/artio/artio_headers/LICENSE",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: AIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
Expand All @@ -38,7 +44,11 @@ classifiers = [
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = [
"astronomy astrophysics visualization amr adaptivemeshrefinement",
"adaptivemeshrefinement",
"amr",
"astronomy",
"astrophysics",
"visualization",
]
requires-python = ">=3.10.4"

Expand All @@ -64,9 +74,6 @@ dependencies = [
file = "README.md"
content-type = "text/markdown"

[project.license]
text = "BSD 3-Clause"

[project.urls]
Homepage = "https://yt-project.org/"
Documentation = "https://yt-project.org/doc/"
Expand Down
Loading