-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.26 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
[build-system]
requires = [
"setuptools >= 65.5.0",
"setuptools_scm[toml] >= 7.0.5",
]
build-backend = "setuptools.build_meta"
[project]
name = "openmc_plot"
authors = [
{ name="Jonathan Shimwell", email="[email protected]" },
]
license = {file = "LICENSE"}
description = "A Python package containing a collection of scripts for producing and downloading data for OpenMC"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["openmc", "plot"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"streamlit",
"openmc_source_plotter>=0.6.2",
"dagmc_geometry_slice_plotter>=0.3.1",
"openmc_geometry_plot>=0.4.3",
"regular_mesh_plotter>=0.5.3",
"openmc_depletion_plotter>=0.3.1",
"openmc_cylindrical_mesh_plotter>=0.1.2",
]
dynamic = ["version"]
[tool.setuptools_scm]
write_to = "src/openmc_plot/_version.py"
[project.optional-dependencies]
tests = [
"pytest",
"requests"
]
[project.urls]
"Homepage" = "https://github.com/fusion-energy/openmc_plot"
"Bug Tracker" = "https://github.com/fusion-energy/openmc_plot/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[project.scripts]
openmc_plot = "openmc_plot.launch:main"