-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.37 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm>=7"]
build-backend = "setuptools.build_meta"
[project]
name = "ElectroMagneticPython"
dynamic = ["version"]
requires-python = ">=3.10"
description = "EMpy - ElectroMagnetic Python"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Lorenzo Bolla", email = "code@lbolla.info" }]
urls = { Homepage = "http://lbolla.github.io/EMpy/", Repository = "https://github.com/lbolla/EMpy" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["numpy>=1.18", "scipy>=1.7", "matplotlib>=3.1"]
[dependency-groups]
dev = [
{ include-group = "format" },
{ include-group = "lint" },
{ include-group = "test" },
{ include-group = "release" },
]
format = ["black>=24.10.0"]
lint = [
"flake8>=7.1.1",
"mypy-extensions>=1.0.0",
"mypy>=1.14.1",
"pyflakes>=3.2.0",
]
test = ["pytest>=8.3.4"]
release = ["bump2version>=1.0.1"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
write_to = "EMpy/_version.py"
local_scheme = "no-local-version"
[tool.uv]
default-groups = "all"