-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.52 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
[build-system]
requires = ['setuptools', 'setuptools_scm']
build-backend = 'setuptools.build_meta'
[project]
name = 'multivariate-view'
requires-python = '>= 3.10'
dynamic = ['version']
dependencies = [
'h5py',
'numba',
'pillow',
'plotly',
'requests',
'scipy',
'trame',
'trame-vtk',
'trame-vuetify',
'trame-plotly',
'vtk',
]
authors = [
{name = 'Patrick Avery', email = '[email protected]'},
{name = 'Sankhesh Jhaveri', email = '[email protected]'},
{name = 'Sebastien Jourdain', email = '[email protected]'},
]
maintainers = [
{name = 'Patrick Avery', email = '[email protected]'},
{name = 'Sankhesh Jhaveri', email = '[email protected]'},
{name = 'Sebastien Jourdain', email = '[email protected]'},
]
description = 'RadVolViz-inspired multivariate volume visualizer using VTK'
readme = 'README.md'
license = {file = 'LICENSE'}
keywords = ['web', 'trame', 'vtk', 'radvolviz', 'multivariate', 'volume']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
multivariate_view = ["module/serve/*.js"]
[tool.setuptools_scm]
[project.scripts]
multivariate-view = 'multivariate_view.app.main:main'
mv-view = 'multivariate_view.app.main:main'
[tool.black]
line-length = 79
skip-string-normalization = true