forked from libAtoms/matscipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 loc) · 1.01 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
[build-system]
requires = ["meson>=1.0.0", "meson-python>=0.13.0", "ninja", "oldest-supported-numpy"]
build-backend = "mesonpy"
[project]
name = "matscipy"
description = "Generic Python Materials Science tools"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "James Kermode", email = "james.kermode@gmail.com"},
{ name = "Lars Pastewka", email = "lars.pastewka@imtek.uni-freiburg.de" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
requires-python = ">=3.7.0"
dynamic = [ "version" ]
dependencies = [
"numpy>=1.16.0",
"scipy>=1.2.3",
"ase>=3.16.0",
]
[project.optional-dependencies]
test = [
"pytest",
"sympy"
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"myst_nb",
"nglview",
"numpydoc",
"atomman"
]
[project.urls]
documentation = "http://libatoms.github.io/matscipy/"
repository = "https://github.com/libAtoms/matscipy"
changelog = "https://github.com/libAtoms/matscipy/blob/master/ChangeLog.md"