-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 2.76 KB
/
pyproject.toml
File metadata and controls
79 lines (70 loc) · 2.76 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
# pyproject.toml
# Note: Many fields are autogenerated by 'WIPACrepo/wipac-dev-py-setup-action'.
# See this repo's GitHub Actions workflow(s) (.github/workflows/*.yaml)
# and https://github.com/WIPACrepo/wipac-dev-py-setup-action for details.
[build-system] # do not edit — autogenerated by wipac-dev-py-setup-action
requires = ["setuptools>=78.1", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
dependencies = [
'astropy',
'healpy',
'matplotlib',
'meander',
'mhealpy',
'numpy',
'pandas',
'scipy',
'wipac-dev-tools',
]
name = "icecube-skyreader" # do not edit — autogenerated by wipac-dev-py-setup-action
description = "An API for Results Produced by SkyDriver & the Skymap Scanner" # do not edit — autogenerated by wipac-dev-py-setup-action
readme = "README.md" # do not edit — autogenerated by wipac-dev-py-setup-action
keywords = [
'IceCube',
'skymap scanner',
'skymap',
'HEALPix',
'neutrino',
'reconstruction',
] # do not edit — autogenerated by wipac-dev-py-setup-action
classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
] # do not edit — autogenerated by wipac-dev-py-setup-action
requires-python = ">=3.10, <3.14" # do not edit — autogenerated by wipac-dev-py-setup-action
dynamic = ["version"] # do not edit — autogenerated by wipac-dev-py-setup-action
license-files = ["LICENSE"] # do not edit — autogenerated by wipac-dev-py-setup-action
license = "MIT" # do not edit — autogenerated by wipac-dev-py-setup-action
[[project.authors]]
name = "WIPAC Developers"
email = "developers@icecube.wisc.edu"
[project.optional-dependencies]
tests = [
'pytest',
'pytest-mock',
]
examples = [
'wipac-rest-tools',
]
mypy = [
'pytest',
'pytest-mock',
'wipac-rest-tools',
] # do not edit — autogenerated by wipac-dev-py-setup-action
[project.urls] # do not edit — autogenerated by wipac-dev-py-setup-action
Homepage = "https://pypi.org/project/icecube-skyreader/"
Tracker = "https://github.com/icecube/skyreader/issues"
Source = "https://github.com/icecube/skyreader"
[tool.setuptools]
packages = [
'skyreader',
'skyreader.plot',
'skyreader.utils',
] # do not edit — autogenerated by wipac-dev-py-setup-action
[tool.setuptools.package-data]
"*" = ["py.typed"] # do not edit — autogenerated by wipac-dev-py-setup-action
[tool.setuptools_scm] # do not edit — autogenerated by wipac-dev-py-setup-action
fallback_version = "CANNOT_BUILD_WITHOUT_GIT_DIR" # used when SCM metadata is missing (no '.git/') — if '.git/' exists but does not contain tags, a commit-based version (like '0.1.dev1+g79c9b4b') will be used instead.