-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.04 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 = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gollum"
version = "0.4.1"
authors = [
{ name="Sujay Shankar", email="[email protected]" },
{ name="Michael Gully-Santiago", email="[email protected]" },
{ name="Caroline Morley", email="[email protected]" },
{ name="Jiayi Cao", email="[email protected]" },
]
maintainers = [{ name="Sujay Shankar", email="[email protected]" }]
description = "An intuitive programmatic and visual interface for precomputed synthetic spectral model grids"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"astropy",
"specutils",
"tqdm",
"pandas",
"bokeh",
"python-dotenv",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/BrownDwarf/gollum"
Issues = "https://github.com/BrownDwarf/gollum/issues"