move to hatch-based builds
This commit is contained in:
parent
9276f8f86b
commit
e1303b8a5c
7 changed files with 58 additions and 55 deletions
55
pyproject.toml
Normal file
55
pyproject.toml
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "gridlock"
|
||||
description = "Coupled gridding library"
|
||||
readme = "README.md"
|
||||
license = { file = "LICENSE.md" }
|
||||
authors = [
|
||||
{ name="Jan Petykiewicz", email="jan@mpxd.net" },
|
||||
]
|
||||
homepage = "https://mpxd.net/code/jan/gridlock"
|
||||
repository = "https://mpxd.net/code/jan/gridlock"
|
||||
keywords = [
|
||||
"FDTD",
|
||||
"gridding",
|
||||
"simulation",
|
||||
"nonuniform",
|
||||
"FDFD",
|
||||
"finite",
|
||||
"difference",
|
||||
]
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Science/Research",
|
||||
"License :: OSI Approved :: GNU Affero General Public License v3",
|
||||
"Topic :: Multimedia :: Graphics :: 3D Rendering",
|
||||
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
||||
"Topic :: Scientific/Engineering :: Physics",
|
||||
"Topic :: Scientific/Engineering :: Visualization",
|
||||
]
|
||||
requires-python = ">=3.8"
|
||||
include = [
|
||||
"LICENSE.md"
|
||||
]
|
||||
dynamic = ["version"]
|
||||
dependencies = [
|
||||
"numpy~=1.21",
|
||||
"float_raster",
|
||||
]
|
||||
|
||||
|
||||
[tool.hatch.version]
|
||||
path = "gridlock/__init__.py"
|
||||
|
||||
[project.optional-dependencies]
|
||||
visualization = ["matplotlib"]
|
||||
visualization-isosurface = [
|
||||
"matplotlib",
|
||||
"skimage>=0.13",
|
||||
"mpl_toolkits",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue