-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 840 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dsa2000_cal"
version = "1.0.0"
description = "DSA2000 calibration and forward modelling code"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache Software License" }
authors = [{ name = "Joshua G. Albert", email = "albert@strw.leidenuniv.nl" }]
keywords = ["calibration", "radio", "DSA2000", "modelling"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
urls = { "Homepage" = "https://github.com/joshuaalbert/dsa2000-cal" }
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]