forked from libmbd/libmbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["poetry_core>=1", "cffi", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pymbd"
version = "0.0.0"
description = "Many-body dispersion library"
authors = ["Jan Hermann <[email protected]>"]
readme = "README.md"
packages = [{ include = "pymbd", from = "src" }]
repository = "https://github.com/jhrmnn/libmbd"
documentation = "https://jhrmnn.github.io/libmbd/pymbd"
license = "MPL-2.0"
build = "build.py"
include = ["src/mbd.h"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Fortran",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
[tool.poetry.dependencies]
python = ">=3.6 <3.10"
scipy = "^1"
numpy = "^1"
cffi = "^1"
pytest = { version = ">=5 <7", optional = true }
mpi4py = { version = "^3", optional = true }
[tool.poetry.extras]
mpi = ["mpi4py"]
test = ["pytest"]
[tool.poetry.dev-dependencies]
flake8 = "^3.5"
flake8-bugbear = "^19"
flake8-comprehensions = "^2"
flake8-quotes = ">=2"
black = ">=20-beta.0"
pydocstyle = "^5"
pep8-naming = "^0.8"
isort = "^5"
fprettify = "^0.3.7"
[tool.poetry-dynamic-versioning]
enable = true
pattern = '^(?P<base>\d+\.\d+\.\d+)$'
[tool.black]
target-version = ["py36"]
skip-string-normalization = true