-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (42 loc) · 1.08 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
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fdtdpy"
version = "0.1.a1"
authors = [{name="Saravanan Dayalan", email="[email protected]"}]
description = "Electromagnetic simulation using the FDTD method with Python"
keywords = ["electromagnetic", "simulation", "fdtd"]
readme = {file="README", content-type="text/x-rst"}
requires-python = ">=3.12.0"
dependencies = [
"numpy",
"PyQt6",
"pyqtgraph",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"line_profiler",
"mypy",
"pylint",
"pytest",
]
docs = [
"sphinx",
"nbsphinx",
"furo",
]
[project.urls]
Homepage = "https://github.com/dsarvan/fdtdpy"
Repository = "https://github.com/dsarvan/fdtdpy"
Issues = "https://github.com/dsarvan/fdtdpy/issues"