-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
69 lines (59 loc) · 1.27 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "symplyphysics"
version = "1.0.0"
authors = [
{name = "blackyblack", email = "[email protected]"},
]
description = "Physics laws implemented as code"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["physics", "mathematics"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"sympy",
]
[project.optional-dependencies]
plots = ["matplotlib"]
dev = [
"pytest",
"mypy",
"pylint>=3.3.0",
"Sphinx",
"sphinx-sitemap",
]
[tool.setuptools.packages.find]
exclude = ["build*"]
[tool.pytest.ini_options]
testpaths = [
"test",
]
[tool.pylint.master]
fail-under = "9.8"
[tool.pylint.basic]
good-names-rgxs = ["^[_a-z][_a-z0-9]?$,^[_A-Z][_a-z0-9]?$"]
[tool.pylint.messages_control]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"line-too-long",
"similarities",
"too-many-locals",
"fixme"
]
[tool.mypy]
disallow_untyped_defs = true
exclude = ["build*"]
[[tool.mypy.overrides]]
module = "sympy.*"
ignore_missing_imports = true
[tool.yapf]
based_on_style = "google"
column_limit = 100
continuation_align_style = "fixed"