-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.35 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
[project]
name = "quickview"
version = "1.0.2"
description = "An application to explore/analyze data for atmosphere component for E3SM"
authors = [
{name = "Kitware Inc."},
]
dependencies = [
"trame>=3.6",
"trame-vtk>=2.6",
"trame-vuetify>=2.4",
"trame-components>=2.3.2",
"trame-grid-layout>=1.0.3",
"trame-tauri>=0.6.2",
"pyproj>=3.6.1",
"netCDF4>=1.6.5",
"pyinstaller",
]
requires-python = ">=3.13"
readme = "README.md"
license = {text = "Apache Software License"}
keywords = ["Python", "Interactive", "Web", "Application", "Framework"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
quickview = [
"presets/**",
"data/**"
]
[project.scripts]
quickview = "quickview.app:main"
[tool.ruff.lint.per-file-ignores]
# Ignore star import issues in ParaView plugins
"quickview/plugins/*.py" = ["F403", "F405"]
"quickview/pipeline.py" = ["F821"] # Plugin classes loaded dynamically