-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.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
[build-system]
requires = ["setuptools>=80", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openmc-plotter"
dynamic = ["version"]
authors = [
{ name = "OpenMC Development Team", email = "openmc@anl.gov" },
]
license = "MIT"
description = "Plotting tool for OpenMC models and tally data"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"openmc>=0.15.0",
"numpy",
"matplotlib",
"PySide6",
]
[project.optional-dependencies]
test = ["pytest", "pytest-qt"]
vtk = ["vtk"]
[project.urls]
"Homepage" = "https://github.com/openmc-dev/plotter"
"Download" = "https://github.com/openmc-dev/plotter"
"Issue Tracker" = "https://github.com/openmc-dev/plotter/issues"
"Source Code" = "https://github.com/openmc-dev/plotter"
[project.scripts]
openmc-plotter = "openmc_plotter.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["openmc_plotter*"]
[tool.setuptools.package-data]
openmc_plotter = ["assets/*.png"]
[tool.setuptools_scm]