-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (55 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
65 lines (55 loc) · 1.57 KB
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
62
63
64
65
[build-system]
requires = ["setuptools>=40.8.0", "wheel", "setuptools_scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyFiberModes"
dynamic = ["version"]
description = "A package for light propagation in fiber optics."
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = ">=3.10"
authors = [{ name="Martin Poinsinet de Sivry-Houle", email="martin.poinsinet.de.sivry@gmail.com"}]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
]
keywords = ["finit-difference", "matrix"]
dependencies = [
"PyOptik",
"MPSPlots",
"PyFinitDiff",
"pyyaml",
"numpy",
"scipy",
]
[tool.setuptools]
packages = {find = {where = ["."], include = ["PyFiberModes*"]}}
include-package-data = true
[tool.setuptools_scm]
write_to = "PyFiberModes/_version.py"
version_scheme = "only-version"
local_scheme = "no-local-version"
[project.optional-dependencies]
testing = [
"pytest >=7.4,<9.0",
"pytest-cov >=2,<8",
"pytest-json-report ~=1.5",
"coverage ~=7.6"
]
documentation = [
"numpydoc ==1.9.0",
"sphinx >=5.1.1",
"sphinx-gallery ==0.19.0",
"sphinx-rtd-theme ==3.1.0",
"pydata-sphinx-theme ==0.14.1",
]
dev = [
"flake8 ==7.3.0",
]