-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
57 lines (51 loc) · 1.19 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=70.0.0", "setuptools-scm", "wheel"]
[project]
authors = [
{name = "Micah Bowles", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPLv3",
"Operating System :: OS Independent"
]
dependencies = [
"astropy==5.3.4",
"beautifulsoup4",
"matplotlib",
"numpy<2",
"pandas",
"regions==0.7",
"requests",
"spectral-cube==0.6.0",
"tqdm",
"torch",
"torchvision"
]
description = "Produce a loadable data set from a catalogue"
dynamic = ["version"]
license = {file = "LICENSE"}
maintainers = [
{name = "Micah Bowles", email = "[email protected]"}
]
name = "cata2data"
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"pytest >=6",
"pytest-cov >=3",
"pre-commit"
]
[project.urls]
Source = "https://github.com/mbowles/cata2data"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["cata2data*"]
namespaces = false
where = ["src"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/cata2data/_version.py"