-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.57 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
[build-system]
requires = ["hatchling>=1.17.1", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"
[project]
name = "lekkersim"
description = "The lekker tool for photonic circuit simulation."
readme = "README.md"
authors = [{ name = "Marco Passoni", email = "mpasson91@gmail.com" }]
license = "AGPL-3.0-or-later"
repository = "https://github.com/mpasson/lekkersim"
documentation = "https://lekkersim.readthedocs.io"
keywords = ['photonics', 'simulation', 'scattering matrix', 'photonic circuits']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version"]
dependencies = [
"matplotlib>=3.5.1",
"numpy>=1.23.1",
"pandas>=1.4.2",
"PyYAML>=6.0",
"scipy>=1.8.0",
]
[project.optional-dependencies]
dev = ["toml>=0.10.2", "hatch-vcs==0.3.0", "pytest>=7.2.0"]
doc = [
"sphinx>=5.3.0",
"sphinx-rtd-theme>=1.1.1",
"nbsphinx>=0.8.12",
"notebook>=6.5.2",
]
[tool.hatch.build]
include = ["lekkersim/*"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "post-release"
[tool.hatch.build.hooks.vcs]
version-file = "lekkersim/_version.py"