Skip to content

Commit

Permalink
pyproject: move metadata from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl authored and inducer committed Jul 12, 2024
1 parent 3ca3848 commit 3be2b5c
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 61 deletions.
68 changes: 68 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
[build-system
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=63",
]

[project]
name = "meshmode"
version = "2021.2"
description = "High-order polynomial discretizations of and on meshes"
readme = "README.rst"
license = { text = "MIT" }
authors = [
{ name = "Andreas Kloeckner", email = "inform@tiker.net" },
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"arraycontext>=2021.1",
"gmsh_interop>=2021.1",
"loopy>=2024.1",
"modepy>=2021.1",
"numpy",
"pymbolic>=2022.2",
"pytools>=2022.1",
"recursivenodes",
]

[project.optional-dependencies]
doc = [
"furo",
"sphinx-copybutton",
"sphinx>=4",
]
visualization = [
"h5py",
"pyvisfile>=2022.1",
]
test = [
"mypy",
"pylint",
"pytest",
"ruff",
]

[project.urls]
Documentation = "https://documen.tician.de/meshmode"
Repository = "https://github.com/inducer/meshmode"

[tool.setuptools.packages.find]
include = [
"meshmode*",
]
61 changes: 0 additions & 61 deletions setup.py

This file was deleted.

0 comments on commit 3be2b5c

Please sign in to comment.