-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 824 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
40
41
42
43
44
45
46
47
48
49
[project]
name = "mast-table"
description = "Interact with MAST data products in a table"
requires-python = ">=3.11"
authors = [
{ name = "mast-table developers" },
]
dependencies = [
"astroquery",
"traitlets",
"ipypopout",
"ipyvuetify",
"ipywidgets",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest"
]
docs = [
"sphinx-astropy[confv2]>=1.9.1",
"sphinx_design"
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.license]
file = "LICENSE"
content-type = "text/plain"
[tool.setuptools.packages.find]
include = ["mast_table"]
[tool.setuptools.package-data]
mast_table= ["mast_table/data/*.json"]
[build-system]
requires = [
"setuptools",
"setuptools_scm"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]