-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.41 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
45
46
47
[build-system]
requires = [
"setuptools >= 61.0",
"cython>3.0",
"cyarray",
"mpi4py>=1.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyzoltan"
dynamic = ["version"]
readme = "README.rst"
license = {file = "LICENSE.txt"}
dependencies = ["numpy", "mpi4py>=1.2"]
description = "Wrapper for the Zoltan data management library"
authors = [
{name = "PySPH Developers", email = "[email protected]"}
]
keywords = ["Cython", "Zoltan", "Dynamic load balancing"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries"
]
[project.optional-dependencies]
docs = ["sphinx"]
tests = ["pytest>=3.0"]
dev = ["sphinx", "pytest>=3.0", "cython>3.0", "cyarray"]
[project.urls]
Documentation = "https://pyzoltan.readthedocs.io"
Repository = "https://github.com/pypr/pyzoltan.git"
Issues = "https://github.com/pypr/pyzoltan/issues"