-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"antlr4-tools>=0.2.1",
'antlr4-python3-runtime>=4.13.2'
]
build-backend = "setuptools.build_meta"
[project]
name = "mccode-antlr"
dependencies = [
'antlr4-python3-runtime>=4.13.2',
'numpy>=2',
'pooch>=1.7.0',
'confuse==2.1.0',
'loguru>=0.7.2',
'gitpython>=3.1.43',
'msgspec>=0.19.0',
'sympy>=1.12',
'packaging',
'pyyaml',
"networkx>=3.0",
"typing_extensions>=4.9.0"
]
description = "ANTLR4 grammars for McStas and McXtrace"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.10"
authors = [
{ name = "Gregory Tucker", email = "gregory.tucker@ess.eu" },
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["gputil==1.4.0", 'pytest', "ipython>=8", "scipp"]
hdf5 = ["h5py>=3.11.0"]
mcpl = ["mcpl>=2.2.0"]
ipython = ["ipython>=8"]
display = ["plotly>=5", "pythreejs", "k3d"]
brep = ["build123d"]
scipp = ["scipp"]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.25",
"mkdocs-jupyter>=0.24",
]
[project.urls]
"Homepage" = "https://github.com/mccode-dev/mccode-antlr"
[project.scripts]
mcstas-antlr = "mccode_antlr.cli.commands:mcstas"
mcxtrace-antlr = "mccode_antlr.cli.commands:mcxtrace"
mcrun-antlr = "mccode_antlr.run.runner:mcstas_cmd"
mxrun-antlr = "mccode_antlr.run.runner:mcxtrace_cmd"
mcc-antlr = "mccode_antlr.cli.compiler:mcstas_compile"
mxc-antlr = "mccode_antlr.cli.compiler:mcxtrace_compile"
mccode-antlr = "mccode_antlr.cli.management:mccode_management"
mcfmt = "mccode_antlr.cli.format:mcfmt"
mcdisplay-antlr-step = "mccode_antlr.cli.step:main"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
include = ["mccode_antlr*"]