File size: 1,535 Bytes
dee22ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46964bb
 
 
 
 
4cdc766
b1a9f36
2bb7f98
668e440
4e1e7f9
 
dee22ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name="temps"
version="2024.0.0"
authors = [
    { name="Laura Cabayol-Garcia", email="lcabayol@pic.es" },
]
maintainers = [
    { name="Laura Cabayol-Garcia", email="lcabayol@pic.es" },
]
description = "Neural network to predict photometric redshifts implementing domain adaptation"
readme = "README.md"

keywords = [
    "Astrophysics", "Cosmology", "photometric redshifts", "Machine learning", "Domain adaptation",
]
requires-python = ">= 3.10"
dependencies = [
    "numpy",
    "scipy",
    "pandas",
    "matplotlib",
    "torch",
    "loguru",
    "pathlib",
    "astropy",
    "gradio",
    "jupytext",
    "mkdocs",
    "typing",
    "dataclasses",
    "pre-commit",
    "gradio"
]

classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Science/Research",
    "Topic :: Scientific :: Cosmology/Astrophysics",
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
]

[project.optional-dependencies]
jupyter = [
    "jupyter",
    "jupytext",
]
test = [
  "pytest",
]

[tool.setuptools.packages.find]
include = ["temps","temps.*"]
namespaces = false


[project.urls]
Homepage="https://github.com/lauracabayol/TEMPS"
Repository="https://github.com/lauracabayol/TEMPS.git"
Issues="https://github.com/lauracabayol/TEMPS/issues"