-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (24 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
31 lines (24 loc) · 859 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
30
31
# RandomDataset
# Copyright (c) 2021 Eric Kerfoot, KCL, see LICENSE file
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "randomdataset"
description = "Random dataset generation tool"
dependencies = ["numpy>=1.18", "click", "pyyaml", "pandas"]
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [{ name = "Eric Kerfoot", email = "eric.kerfoot@kcl.ac.uk" }]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://github.com/KCL-BMEIS/RandomDataset"
[project.scripts]
generate_dataset = "randomdataset:generate_dataset"
[tool.setuptools.packages.find]
include = ["randomdataset*"]
[tool.setuptools.dynamic]
version = {attr = "randomdataset._version.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[metadata]
description-file = "README.md"