-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 993 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 993 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
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cyclops"
version = "0.1.1"
description = "Sensor placement optimiser for experiments"
authors = [
{ name = "Luke Humphrey", email = "luke.humphrey@ukaea.uk" },
{ name = "Lloyd Flecther", email = "lloyd.fletcher@ukaea.uk" },
{ name = "Dominic Harrington"},
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: GNU LGPL",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"ipykernel==6.17.1",
"matplotlib==3.7.3",
"meshio==5.3.4",
"netCDF4==1.6.4",
"numpy==1.25.2",
"pymoo==0.6.0.1",
"SciencePlots==2.1.0",
"scikit-learn==1.3.0",
"scipy==1.11.2",
]
[project.urls]
"Repository" = "https://github.com/aurora-multiphysics/cyclops"
"Issue Tracker" = "https://github.com/aurora-multiphysics/cyclops/issues"
[tool.setuptools.packages.find]
where = ["src"]