-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 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
46
47
48
49
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mbs"
version = "0.2"
description = 'Utilities for MB Scientific analyzer data'
authors = [ {name = "Johannes Falke", email = "[email protected]"} ]
requires-python = ">=3.8, <4"
keywords = ["arpes", "spectroscopy", "physics", "science"]
license = {text = "GPLv3"}
dependencies = [
'numpy',
'scipy',
'matplotlib~=3.4',
'pandas',
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
homepage = "https://github.com/mueslo/mbs"
documentation = "https://mbsutils.readthedocs.io/"
[project.optional-dependencies]
docs = [
"sphinx~=7.0",
"sphinx-rtd-theme",
"sphinx-gallery~=0.13",
"Pillow",
]
tests = [ "pytest", ]
xarray = [ "xarray", ]
widgets = [
"jupyterlab~=3.2",
"ipympl~=0.8",
"ipywidgets~=7.6",
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)