-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.1 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
[build-system]
requires = ["setuptools >= 75.8.0", "wheel", "setuptools_scm[toml]>=8.1.0"]
[project]
name = "aisim"
description = "Simulations for light-pulse atom interferometry"
authors = [
{ name = "Bastian Leykauf" },
{ email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy>=1.26.4,<3.0.0",
"scipy>=1.15.1,<2.0",
"matplotlib>=3.9.4,<4.0.0",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"ruff>=0.9.10",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"setuptools_scm>=8.1.0",
]
docs = [
"sphinx>=8.2.1",
"nbsphinx>=0.9.6",
"pygments>=2.4",
"sphinx_rtd_theme>=3.0.2",
]
[tool.setuptools_scm]
[project.urls]
homepage = "https://github.com/bleykauf/aisim/"
repository = "https://github.com/bleykauf/aisim/"