-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpyproject.toml
More file actions
153 lines (136 loc) · 4.47 KB
/
pyproject.toml
File metadata and controls
153 lines (136 loc) · 4.47 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fury"
description = "FURY - Free Unified Rendering in pYthon. A free and open-source software library for Scientific Visualization and 3D animations"
readme = "README.md"
requires-python = ">=3.10"
license.file="LICENSE"
keywords = ["Scientific Visualization", "shaders", "animation", "simulation",
"Physically based rendering", "3D", "3D rendering", "networks",
"physics engine", "physics", "simulation", "visualization"]
authors = [
{name = "Eleftherios Garyfallidis", email = "fury@python.org"},
{name = "Serge Koudoro", email = "fury@python.org"},
{name = "Maharshi Gor", email = "fury@python.org"},
{name = "Javier Guaje", email = "fury@python.org"},
{name = "Marc-Alexandre Côté", email = "fury@python.org"},
{name = "Soham Biswas", email = "fury@python.org"},
{name = "David Reagan", email = "fury@python.org"},
{name = "Nasim Anousheh", email = "fury@python.org"},
{name = "Filipi Silva", email = "fury@python.org"},
{name = "Geoffrey Fox", email = "fury@python.org"},
]
maintainers = [
{name = "FURY Developers", email = "fury@python.org"},
]
classifiers = [
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=2.0",
"scipy>=1.13.0",
"pillow>=10.4.0",
"packaging>=23.0",
"lazy_loader>=0.4",
"pygfx>=0.16.0",
"glfw>=2.7.0",
"aiohttp"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://fury.gl"
Source = "https://github.com/fury-gl/fury"
Tracker = "https://github.com/fury-gl/fury/issues"
[project.optional-dependencies]
all = ["fury[optional, dev, doc, style, typing, test]"]
window = ["PySide6", "jupyter-rfb", "imgui_bundle; python_version >= \"3.12\""]
plot = ["matplotlib>=3.9.0"]
medical = ["dipy", "nibabel"]
compute = ["numba"]
optional = ["fury[window, plot, medical, compute]"]
dev = [
"gitpython",
"twine",
"build",
"fury[style, typing, test]",
]
doc = [
"numpydoc",
"sphinx >=6.1.2,<9.0.0",
"ablog >=0.11.1",
"texext",
"tomli; python_version < \"3.11\"",
"sphinx-copybutton",
"sphinx-gallery>=0.10.0",
"pydata-sphinx-theme==0.15.2",
"fury[window, plot, medical]",
]
style = ["ruff", "pre-commit"]
typing = ["mypy", "types-Pillow", "data-science-types"]
test = [
"coverage",
"pytest !=5.3.4",
"pytest-cov",
"pytest-doctestplus",
]
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["fury",]
exclude = []
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "release-branch-semver" }
[tool.hatch.build.hooks.vcs]
version-file = "fury/_version.py"
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = "True"
exclude = [
"/tests",
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*You do not have Matplotlib installed.*:UserWarning",
"ignore:We'll no longer accept the way you call the.*function:UserWarning:.*doctest",
"ignore:.*There is no current event loop.*:DeprecationWarning",
# This is due to the Qt deprecation warnings in RenderCanvas
"ignore:.*ApplicationAttribute.AA_EnableHighDpiScaling.*:DeprecationWarning"
]
# addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 95"
[tool.codespell]
skip = '*.po,*.ts,*.html,./docs/build,./.mypy_cache,./build,./dist,.git,*.pdf,*.svg,*.bib'
count = ''
quiet-level = 3
[tool.numpydoc_validation]
checks = [
"all", # report on all checks, except the below
"EX01",
"SA01", # no see also
"SA04", # no description in See Also
"ES01", # no extended summary
"GL01", # Docstring should start in the line immediately after the quotes
"GL02", # Closing quotes on own line (doesn't work on Python 3.13 anyway)
]
# remember to use single quotes for regex in TOML
exclude = [ # don't report on objects that match any of these regex
'\.undocumented_method$',
'\.__repr__$',
]