forked from PyEllips/pyElli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.53 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
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=46.1.0", "setuptools-scm[toml]>=5"]
build-backend = "setuptools.build_meta"
[project]
name = "pyElli"
description = "Python implementation of Berremans 4x4 matrix method"
dynamic = ["version"]
authors = [
{ name = "Marius Müller", email = "[email protected]" },
{ name = "Florian Dobener", email = "[email protected]" }
]
requires-python = ">=3.7"
license = { file = "LICENSE.txt" }
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
dependencies = [
"scipy",
"numpy>=1.20",
"pandas>=1.0.0",
"h5py",
"pyyaml",
"importlib-resources",
"rapidfuzz"
]
[project.optional-dependencies]
fitting = [
"ipython",
"ipywidgets",
"plotly",
"matplotlib",
"lmfit"
]
testing = [
"pytest",
"pytest-cov",
"nbmake"
]
[project.urls]
homepage = "https://github.com/PyEllips/pyElli/"
repository = "https://github.com/PyEllips/pyElli/"
documentation = "https://pyelli.readthedocs.io/en/latest/"
changelog = "https://github.com/PyEllips/pyElli/blob/master/CHANGELOG.md"
tracker = "https://github.com/PyEllips/pyElli/issues"
download = "https://github.com/PyEllips/pyElli/releases"
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "node-and-date"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]