-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
93 lines (82 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sopht"
version = "0.0.1"
description = "Scalable One-stop Platform for Hydroelastic Things (SOPHT)"
readme = "README.md"
authors = ["Yashraj Bhosale <[email protected]>", "Arman Tekinalp <[email protected]>"]
license = "MIT"
repository = "https://github.com/SophT-Team/SophT"
# ...
packages = [
{ include = "sopht" }
]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
numpy = "^1.20.0"
numba = ">=0.55"
scipy = "^1.7.3"
sympy = "^1.9"
psutil = "^5.9.0"
h5py = "^3.6"
pyelastica = "^0.3"
matplotlib = "3.7.1"
pyfftw = [
{ version="^0.13.0", markers="sys_platform != 'darwin'", source="pypi"},
{ git="https://github.com/tp5uiuc/pyFFTW.git", branch="macos_fix", markers="sys_platform == 'darwin'" },
]
pystencils = [
{ version="^1.0", markers="sys_platform != 'darwin'", source="pypi"},
{ git="https://github.com/sy-cui/pystencils.git", branch="macos_fix", markers="sys_platform == 'darwin'" },
]
click = {version = "^8.1", optional = true, extras = ["examples"]}
coomm = {version = ">=0.1.1", optional = true, extras = ["examples"]}
magneto_pyelastica = {version = ">=0.0.1", optional = true, extras = ["examples"]}
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
pre-commit = "^2.19.0"
pytest = "^7.0.1"
coverage = "^6.3.2"
pytest-cov = "^3.0.0"
mypy = "^0.982"
[tool.poetry.extras]
examples = ["click", "coomm", "magneto_pyelastica"]
[tool.black]
# https://github.com/psf/black
target-version = ["py310"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
python_version = "3.10"
pretty = true
show_traceback = true
color_output = true
check_untyped_defs = false
ignore_missing_imports = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs =["hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]