-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.13 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "visl3d"
version = "0.3"
requires-python = ">= 3.7"
dependencies = [
"numpy",
"scikit-image",
"matplotlib",
"scipy",
"astroquery >= 0.4.7",
"astropy",
]
authors = [
{name = "Ixaka Labadie García", email = "[email protected]"}
]
maintainers = [
{name = "Ixaka Labadie García", email = "[email protected]"}
]
description = "Python library to create interactive 3D visualisations of astrophysical spectral line data"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["3d", "visualisation", "astrophysics", "spectral lines", "interactive", "datacube"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/ixakalabadie/ViSL3D"
Issues = "https://github.com/ixakalabadie/ViSL3D/issues"