-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
82 lines (73 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "lavavu"
authors = [
{name = "Owen Kaluza", email = "[email protected]"},
]
description = "Python interface to LavaVu OpenGL 3D scientific visualisation utilities"
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Environment :: X11 Applications',
'Environment :: MacOS X :: Cocoa',
'Environment :: Win32 (MS Windows)',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Scientific/Engineering :: Visualization',
'Development Status :: 5 - Production/Stable',
'Programming Language :: C++',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Framework :: Jupyter',
'Framework :: IPython'
]
requires-python = ">=3.5"
dynamic = ["version", "dependencies"]
#dynamic = ["version", "description", "dependencies"]
[project.urls]
Documentation = "https://lavavu.github.io"
Source = "https://github.com/lavavu/LavaVu"
#[project.scripts]
[project.gui-scripts]
LavaVu = 'lavavu.__main__:main'
[tool.setuptools]
include-package-data = false
#packages = ["lavavu"]
#package-dir = {'lavavu' = 'lavavu'}
#exclude = ["html", "shaders"]
[tool.setuptools.packages.find]
include = ["lavavu*"]
exclude = ["html*", "shaders*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "setup.version"}
[tool.setuptools.package-data]
lavavu = ['font.bin', 'dict.json', 'shaders/*', 'html/*', '*.dll']
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"wheel",
"setuptools>=61.2",
"packaging",
"numpy==1.13.3; python_version=='3.6'",
"numpy==1.14.5; python_version=='3.7'",
"numpy==1.24.4; python_version=='3.8'",
"numpy==2.0.0; python_version=='3.9'",
"numpy==2.0.0; python_version=='3.10'",
"numpy==2.0.0; python_version=='3.11'",
"numpy==2.0.0; python_version=='3.12'",
]
[project.entry-points."gui_scripts"]
LV = 'lavavu.__main__:main'
LavaVu = 'lavavu.__main__:main'