-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.01 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
[project]
name = "arpespythontools"
version = "1.2.2"
description = "Explore, analyze, visualize Angle Resolved Photoemission Spectroscopy (ARPES) data."
authors = [{ name = "Pranab Das" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10,<4.0"
keywords = [
"arpes",
"condensed-matter-physics",
"data-analysis",
"materials-science",
"matplotlib",
"photoelectron-spectroscopy",
"python",
"surface-science",
]
dependencies = [
"astropy>=6.1.7",
"matplotlib>=3.10.0",
"numpy>=2.2.1",
"psutil>=6.1.1",
"scipy>=1.15.0",
]
[project.optional-dependencies]
lint = [
"autopep8>=2.3.1",
]
notebook = [
"jupyterlab>=4.3.4",
]
[project.urls]
homepage = "https://pranabdas.github.io/arpespythontools/"
repository = "https://github.com/pranabdas/arpespythontools"
documentation = "https://pranabdas.github.io/arpespythontools/docs/"
[tool.poetry]
requires-poetry = ">=2.0"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"