-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.7 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
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "casm-project"
version = "2.0a2"
authors = [
{ name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" },
]
description = "CASM project interface"
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = {text = "LGPL2.1+"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Topic :: Scientific/Engineering",
]
dependencies = [
"bokeh",
"darkdetect",
"fastapi",
"uvicorn",
"latex2mathml",
"numpy",
"scipy",
"libcasm-mapping>=2.4.1",
"libcasm-clexmonte>=2.4.0",
"casm-bset>=2.2.0",
"casm-tools>=2.0a3",
]
[project.optional-dependencies]
ase = ["ase"]
[project.urls]
Homepage = "https://prisms-center.github.io/CASMcode_docs/"
Repository = "https://github.com/prisms-center/casm_project"
[build_sphinx]
source-dir = "doc"
build-dir = "doc/build"
all_files = 1
[project.scripts]
casm-api-server = "casm.vis._api_server:main"
casm-bokeh-server = "casm.vis._bokeh_server:main"
casm-vis-server = "casm.vis._vis_server:main"
casm-vis = "casm.vis._casm_vis:main"
[tool.ruff.lint]
select = ["NPY201", "E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["libcasm", "casm"]
[tool.pytest.ini_options]
markers = [
"requires_ase: marks tests requiring ase (deselect with '-m \"not requires_ase\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"very_slow: marks tests as very slow (deselect with '-m \"not very_slow\"')",
]