-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (41 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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"