-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.57 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
[project]
name = "glassure"
dynamic = ["version"]
description = "API and GUI for analysis of X-ray total scattering data"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Clemens Prescher", email = "clemens.prescher@gmail.com" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=1.26.0",
"scipy>=1.11.3",
"lmfit>=1.2.0,<2.0.0",
"pandas>=2.1.0,<3.0.0",
"pydantic>=2.7.1,<3.0.0",
"xraylib>=4.1.5,<5.0.0",
"urllib3>=2.6.3", # CVE fix: decompression-bomb safeguards bypass
]
[project.optional-dependencies]
dev = [
"mock>=5.0.1,<6.0.0",
"pytest>=7.3.1,<8.0.0",
"pytest-cov>=4.1.0,<5.0.0",
]
docs = [
"sphinx>=7.2.5,<8.0.0",
"myst-parser>=2.0.0,<3.0.0",
"nbsphinx>=0.9.3,<1.0.0",
"jupyter>=1.0.0,<2.0.0",
"matplotlib>=3.7.2,<4.0.0",
"sphinx-rtd-theme>=1.3.0,<2.0.0",
"autodoc-pydantic>=2.2.0,<3.0.0",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
# Write the version into this Python file during build
version-file = "glassure/_version.py"
[tool.hatch.build.targets.sdist]
include = ["glassure/**", "README.md", "pyproject.toml"]
[build-system]
requires = ["hatchling>=1.18", "hatch-vcs>=0.4"]
build-backend = "hatchling.build"