-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (34 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torchoptics"
version = "0.0.0rc2"
description = "Python library for differentiable Fourier optics simulations with PyTorch."
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Matthew Filipovich", email = "matthew.filipovich@physics.ox.ac.uk"}]
requires-python = ">=3.9"
dependencies = [
"torch",
"matplotlib",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/MatthewFilipovich/torchoptics"
Documentation = "https://torchoptics.readthedocs.io/"
Tracker = "https://github.com/MatthewFilipovich/torchoptics/issues"
[tool.black]
line-length = 110
[tool.mypy]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "matplotlib.*"
ignore_errors = true