-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: switch from setup.py to pyproject.toml (#81)
- Loading branch information
Showing
3 changed files
with
49 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools >= 65", | ||
"setuptools_scm[toml]", | ||
"wheel", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pylops-mpi" | ||
description = "Python library implementing linear operators with MPI" | ||
readme = "README.md" | ||
authors = [ | ||
{name = "Rohan Babbar", email = "[email protected]"}, | ||
{name = "Matteo Ravasi", email = "[email protected]"}, | ||
] | ||
license = {file = "LICENSE"} | ||
keywords = ["algebra", "inverse problems", "large-scale optimization", "distributed computing",] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Scientific/Engineering : Mathematics", | ||
] | ||
dependencies = [ | ||
"numpy >= 1.15.0", | ||
"scipy >= 1.4.0", | ||
"pylops >= 2.0", | ||
"mpi4py", | ||
"matplotlib", | ||
] | ||
dynamic = ["version"] | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["pytests"] | ||
|
||
[tool.setuptools_scm] | ||
version_file = "pylops_mpi/version.py" |