forked from PyLops/pylops
-
Notifications
You must be signed in to change notification settings - Fork 2
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 (PyLops#530)
build: switch from setup.py to pyproject.toml
- Loading branch information
Showing
7 changed files
with
71 additions
and
65 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
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 |
---|---|---|
|
@@ -19,5 +19,5 @@ sphinx: | |
python: | ||
install: | ||
- requirements: requirements-dev.txt | ||
- method: setuptools | ||
- method: pip | ||
path: . |
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" |
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 |
---|---|---|
@@ -1,3 +1,56 @@ | ||
[metadata] | ||
name = pylops | ||
fullname = PyLops | ||
description = Python library implementing linear operators to allow solving large-scale optimization problems | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
author = The PyLops Development Team | ||
author_email = [email protected] | ||
maintainer = "Matteo Ravasi" | ||
maintainer_email = [email protected] | ||
license = LGPL-3.0 License | ||
license_file = LICENSE.md | ||
platform = any | ||
keywords = algebra, inverse problems, large-scale optimization | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Intended Audience :: Science/Research | ||
Intended Audience :: Education | ||
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3), | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Topic :: Scientific/Engineering : Mathematics | ||
url = https://github.com/pylops/pylops | ||
|
||
project_urls = | ||
Documentation = https://pylops.readthedocs.io/ | ||
Release Notes = https://github.com/pylops/pylops/releases | ||
Bug Tracker = https://github.com/pylops/pylops/issues | ||
Source Code = https://github.com/pylops/pylops | ||
|
||
[options] | ||
zip_safe = True | ||
include_package_data = True | ||
packages = find: | ||
python_requires = >=3.8 | ||
install_requires = | ||
numpy >= 1.21.0 | ||
scipy >= 1.4.0 | ||
|
||
[options.extras_require] | ||
advanced = | ||
llvmlite | ||
numba | ||
pyfftw | ||
PyWavelets | ||
scikit-fmm | ||
spgl1 | ||
|
||
[aliases] | ||
test=pytest | ||
|
||
|
@@ -11,7 +64,6 @@ per-file-ignores = | |
__init__.py: F401, F403, F405 | ||
max-line-length = 88 | ||
|
||
|
||
# mypy global options | ||
[mypy] | ||
plugins = numpy.typing.mypy_plugin | ||
|