-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (69 loc) · 1.65 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
[project]
authors = [
{ name = "Luca Grementieri", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.20"
]
description = "Mesh curvature in Numpy"
name = "pycurvature"
readme = "README.md"
requires-python = ">=3.7"
version = "0.1"
[project.optional-dependencies]
test = ["pymeshlab>=2022.2.post4", "pytest-cases>=3.6", "pytest>=7.4"]
[tool.setuptools.package-data]
"pycurvature" = ["py.typed"]
[tool.black]
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.vscode
| venv
| build
| dist
)/
'''
[tool.ruff]
line-length = 100
select = ["F", "E", "W", "I001"]
[tool.mypy]
check_untyped_defs = true
exclude = [
'\.git',
'\.mypy_cache',
'\.tox',
'\.vscode',
'_skbuild',
'build',
'dist',
'venv'
]
namespace_packages = true
no_implicit_optional = true
plugins = ['numpy.typing.mypy_plugin']
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ['pymeshlab', 'pytest_cases']