2024-04-02 16:30:23 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools >= 61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
description = "Neural network emulators to transform field/map data"
|
|
|
|
readme = "README.md"
|
2024-05-17 09:37:34 +02:00
|
|
|
name = "map2map-aquila"
|
2024-04-02 16:30:23 +02:00
|
|
|
dynamic = ["version"]
|
|
|
|
requires-python = ">= 3.9"
|
|
|
|
classifiers = [
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
'torch>=1.2',
|
|
|
|
'numpy',
|
|
|
|
'scipy',
|
|
|
|
'matplotlib',
|
2024-04-03 17:00:41 +02:00
|
|
|
'tensorboard',
|
2024-04-05 09:11:23 +02:00
|
|
|
'h5py','tqdm',
|
2024-04-03 18:53:44 +02:00
|
|
|
'click','pyyaml']
|
2024-04-02 16:30:23 +02:00
|
|
|
|
|
|
|
authors = [
|
|
|
|
{name = "Yin Li", email = "eelregit@gmail.com"},
|
|
|
|
{name = "Deaglan Bartlett", email = "deaglan.bartlett@iap.fr"},
|
|
|
|
{name = "Guilhem Lavaux", email = "guilhem.lavaux@iap.fr" },
|
|
|
|
]
|
|
|
|
maintainers = [
|
|
|
|
{name = "Guilhem Lavaux", email = "guilhem.lavaux@iap.fr"}
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
2024-04-03 17:00:41 +02:00
|
|
|
m2m = "map2map:main.main"
|
2024-04-05 09:11:23 +02:00
|
|
|
mapcropper = "map2map:cropper.cropper"
|
2024-04-02 16:30:23 +02:00
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
#Homepage = "https://example.com"
|
|
|
|
#Documentation = "https://readthedocs.org"
|
2024-05-17 09:37:34 +02:00
|
|
|
Repository = "https://git.aquila-consortium.org/aquila-consortium/map2map.git"
|
|
|
|
Issues = "https://git.aquila-consortium.org/aquila-consortium/map2map/issues/new"
|
2024-04-02 16:30:23 +02:00
|
|
|
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
|