-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.13 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
[project]
name = "yasfpy"
version = "0.0.13"
description = "Light scattering code using T-Matrix"
readme = "README.md"
authors = [{ name = "Mirza Arnaut", email = "[email protected]" }]
license = { file = "LICENSE" }
requires-python = "<3.13,>=3.10"
dependencies = [
"pydantic>=2.9.2",
"rich>=13.8.1",
"numpy<2.0.0,>=1.26.3",
"scipy>=1.13.0",
"numba>=0.59.0",
"pyyaml>=6.0.1",
"pandas>=2.2",
"requests>=2.31.0",
"pywigxjpf>=1.11",
# "refractiveindex>=0.0.3",
"pyperf>=2.7.0",
"pyinstrument>=4.7.3",
# "speedscope>=1.0",
"click>=8.1.7",
"refidxdb>=0.0.6",
]
[project.optional-dependencies]
test = [
"astropy>=6.0.0",
"coverage>=7.4.1",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
]
[dependency-groups]
docs = [
"mkdocs>=1.5.3",
"mkdocs-autorefs>=0.5.0",
"mkdocs-coverage>=1.0.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-material>=9.5.6",
"mkdocs-section-index>=0.3.8",
"mkdocstrings>=0.24.0",
"mkdocstrings-python>=1.8.0",
"pymdown-extensions>=10.7",
]
[project.scripts]
yasf = "yasfpy.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"