-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 1.17 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
# [tool.setuptools.dynamic]
# version = {attr = "ElectronicEngineering.__version__"}
# [tool.setuptools.packages.find]
# where = ["src"] # list of folders that contain the packages (["."] by default)
# include = ["ElectronicEngineering*"] # package names should match these glob patterns (["*"] by default)
# exclude = ["ElectronicEngineering.tests*"] # exclude packages matching these glob patterns (empty by default)
# namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project]
name = "ElectronicEngineering"
authors = [
{ name="David Lutton", email="[email protected]" },
]
description = "RF/EM formulas and ..."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# dynamic = ["version"]
version = "0.1.0"
[project.urls]
"Homepage" = "https://github.com/DavidLutton/ElectronicEngineering"
"Bug Tracker" = "https://github.com/DavidLutton/ElectronicEngineering/issues"