forked from fury-gl/fury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
119 lines (103 loc) · 3.17 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
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
[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.8"
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 = "[email protected]"},
{name = "Serge Koudoro", email = "[email protected]"},
{name = "Javier Guaje", email = "[email protected]"},
{name = "Marc-Alexandre Côté", email = "[email protected]"},
{name = "Soham Biswas", email = "[email protected]"},
{name = "David Reagan", email = "[email protected]"},
{name = "Nasim Anousheh", email = "[email protected]"},
{name = "Filipi Silva", email = "[email protected]"},
{name = "Geoffrey Fox", email = "[email protected]"},
]
maintainers = [
{name = "FURY Developers", email = "[email protected]"},
]
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",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy >=1.15",
"scipy>=1.0",
"vtk>=9.1.0",
"pillow>=5.4.1",
"packaging >=17.0",
"pygltflib>=1.15.3",
"aiohttp>=3.8.4",
]
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[plot, dev, doc, medical, style, test, typing]"]
plot = ["matplotlib>=1.5.3", ]
medical = ["dipy", "nibabel"]
dev = [
"gitpython",
"twine",
]
doc = [
"matplotlib >= 1.5.3",
"numpydoc",
"sphinx >=6.1.2",
"texext",
"tomli; python_version < \"3.11\"",
]
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]
# 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