atlas-schema 0.1.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- atlas_schema/__init__.py +5 -1
- atlas_schema/_version.py +2 -2
- atlas_schema/enums.py +111 -104
- atlas_schema/methods.py +94 -34
- atlas_schema/typing_compat.py +2 -7
- {atlas_schema-0.1.0.dist-info → atlas_schema-0.2.1.dist-info}/METADATA +11 -6
- atlas_schema-0.2.1.dist-info/RECORD +12 -0
- {atlas_schema-0.1.0.dist-info → atlas_schema-0.2.1.dist-info}/WHEEL +1 -1
- atlas_schema-0.1.0.dist-info/RECORD +0 -12
- {atlas_schema-0.1.0.dist-info → atlas_schema-0.2.1.dist-info}/licenses/LICENSE +0 -0
atlas_schema/__init__.py
CHANGED
@@ -6,7 +6,11 @@ atlas_schema: Collection of utilities and helper functions for HEP ATLAS analyse
|
|
6
6
|
|
7
7
|
from __future__ import annotations
|
8
8
|
|
9
|
+
import warnings
|
10
|
+
|
9
11
|
from atlas_schema._version import version as __version__
|
10
12
|
from atlas_schema.enums import ParticleOrigin, PhotonID
|
11
13
|
|
12
|
-
|
14
|
+
warnings.filterwarnings("ignore", module="coffea.*")
|
15
|
+
|
16
|
+
__all__ = ["ParticleOrigin", "PhotonID", "__version__"]
|
atlas_schema/_version.py
CHANGED
atlas_schema/enums.py
CHANGED
@@ -2,115 +2,122 @@ from __future__ import annotations
|
|
2
2
|
|
3
3
|
from enum import IntEnum
|
4
4
|
|
5
|
-
from atlas_schema.typing_compat import Annotated
|
6
5
|
|
7
|
-
|
8
|
-
# https://gitlab.cern.ch/atlas/athena/-/blob/74f43ff0910edb2a2bd3778880ccbdad648dc037/Generators/TruthUtils/TruthUtils/TruthClasses.h#L51-103
|
9
6
|
class ParticleType(IntEnum):
|
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
|
-
|
7
|
+
"""
|
8
|
+
Taken from `ATLAS Truth Utilities for ParticleType <https://gitlab.cern.ch/atlas/athena/-/blob/74f43ff0910edb2a2bd3778880ccbdad648dc037/Generators/TruthUtils/TruthUtils/TruthClasses.h#L8-49>`_.
|
9
|
+
"""
|
10
|
+
|
11
|
+
Unknown = 0
|
12
|
+
UnknownElectron = 1
|
13
|
+
IsoElectron = 2
|
14
|
+
NonIsoElectron = 3
|
15
|
+
BkgElectron = 4
|
16
|
+
UnknownMuon = 5
|
17
|
+
IsoMuon = 6
|
18
|
+
NonIsoMuon = 7
|
19
|
+
BkgMuon = 8
|
20
|
+
UnknownTau = 9
|
21
|
+
IsoTau = 10
|
22
|
+
NonIsoTau = 11
|
23
|
+
BkgTau = 12
|
24
|
+
UnknownPhoton = 13
|
25
|
+
IsoPhoton = 14
|
26
|
+
NonIsoPhoton = 15
|
27
|
+
BkgPhoton = 16
|
28
|
+
Hadron = 17
|
29
|
+
Neutrino = 18
|
30
|
+
NuclFrag = 19
|
31
|
+
NonPrimary = 20
|
32
|
+
GenParticle = 21
|
33
|
+
SUSYParticle = 22
|
34
|
+
OtherBSMParticle = 39
|
35
|
+
BBbarMesonPart = 23
|
36
|
+
BottomMesonPart = 24
|
37
|
+
CCbarMesonPart = 25
|
38
|
+
CharmedMesonPart = 26
|
39
|
+
BottomBaryonPart = 27
|
40
|
+
CharmedBaryonPart = 28
|
41
|
+
StrangeBaryonPart = 29
|
42
|
+
LightBaryonPart = 30
|
43
|
+
StrangeMesonPart = 31
|
44
|
+
LightMesonPart = 32
|
45
|
+
BJet = 33
|
46
|
+
CJet = 34
|
47
|
+
LJet = 35
|
48
|
+
GJet = 36
|
49
|
+
TauJet = 37
|
50
|
+
UnknownJet = 38
|
50
51
|
|
51
52
|
|
52
|
-
# https://gitlab.cern.ch/atlas/athena/-/blob/74f43ff0910edb2a2bd3778880ccbdad648dc037/Generators/TruthUtils/TruthUtils/TruthClasses.h#L51-103
|
53
53
|
class ParticleOrigin(IntEnum):
|
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
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
54
|
+
"""
|
55
|
+
Taken from `ATLAS Truth Utilities for ParticleOrigin <https://gitlab.cern.ch/atlas/athena/-/blob/74f43ff0910edb2a2bd3778880ccbdad648dc037/Generators/TruthUtils/TruthUtils/TruthClasses.h#L51-103>`_.
|
56
|
+
"""
|
57
|
+
|
58
|
+
NonDefined = 0
|
59
|
+
SingleElec = 1
|
60
|
+
SingleMuon = 2
|
61
|
+
SinglePhot = 3
|
62
|
+
SingleTau = 4
|
63
|
+
PhotonConv = 5
|
64
|
+
DalitzDec = 6
|
65
|
+
ElMagProc = 7
|
66
|
+
Mu = 8
|
67
|
+
TauLep = 9
|
68
|
+
top = 10
|
69
|
+
QuarkWeakDec = 11
|
70
|
+
WBoson = 12
|
71
|
+
ZBoson = 13
|
72
|
+
Higgs = 14
|
73
|
+
HiggsMSSM = 15
|
74
|
+
HeavyBoson = 16
|
75
|
+
WBosonLRSM = 17
|
76
|
+
NuREle = 18
|
77
|
+
NuRMu = 19
|
78
|
+
NuRTau = 20
|
79
|
+
LQ = 21
|
80
|
+
SUSY = 22
|
81
|
+
OtherBSM = 46
|
82
|
+
LightMeson = 23
|
83
|
+
StrangeMeson = 24
|
84
|
+
CharmedMeson = 25
|
85
|
+
BottomMeson = 26
|
86
|
+
CCbarMeson = 27
|
87
|
+
JPsi = 28
|
88
|
+
BBbarMeson = 29
|
89
|
+
LightBaryon = 30
|
90
|
+
StrangeBaryon = 31
|
91
|
+
CharmedBaryon = 32
|
92
|
+
BottomBaryon = 33
|
93
|
+
PionDecay = 34
|
94
|
+
KaonDecay = 35
|
95
|
+
BremPhot = 36
|
96
|
+
PromptPhot = 37
|
97
|
+
UndrPhot = 38
|
98
|
+
ISRPhot = 39
|
99
|
+
FSRPhot = 40
|
100
|
+
NucReact = 41
|
101
|
+
PiZero = 42
|
102
|
+
DiBoson = 43
|
103
|
+
ZorHeavyBoson = 44
|
104
|
+
MultiBoson = 47
|
105
|
+
QCD = 45
|
102
106
|
|
103
107
|
|
104
|
-
# https://twiki.cern.ch/twiki/bin/viewauth/AtlasProtected/EGammaIdentificationRun2#Photon_isEM_word
|
105
108
|
class PhotonID(IntEnum):
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
109
|
+
"""
|
110
|
+
Taken from the `EGamma Identification CP group's twiki <https://twiki.cern.ch/twiki/bin/viewauth/AtlasProtected/EGammaIdentificationRun2#Photon_isEM_word>`_.
|
111
|
+
"""
|
112
|
+
|
113
|
+
Rhad = 10 # ClusterHadronicLeakage_Photon
|
114
|
+
E277 = 11 # ClusterMiddleEnergy_Photon
|
115
|
+
Reta = 12 # ClusterMiddleEratio37_Photon
|
116
|
+
Rphi = 13 # ClusterMiddleEratio33_Photon
|
117
|
+
Weta2 = 14 # ClusterMiddleWidth_Photon
|
118
|
+
f1 = 15 # ClusterStripsEratio_Photon
|
119
|
+
DeltaE = 17 # ClusterStripsDeltaE_Photon
|
120
|
+
Wstot = 18 # ClusterStripsWtot_Photon
|
121
|
+
fside = 19 # ClusterStripsFracm_Photon
|
122
|
+
Ws3 = 20 # ClusterStripsWeta1c_Photon
|
123
|
+
ERatio = 21 # ClusterStripsDEmaxs1_Photon
|
atlas_schema/methods.py
CHANGED
@@ -6,6 +6,7 @@ from functools import reduce
|
|
6
6
|
from operator import ior
|
7
7
|
|
8
8
|
import awkward
|
9
|
+
import particle
|
9
10
|
from coffea.nanoevents.methods import base, candidate, vector
|
10
11
|
from dask_awkward import dask_method
|
11
12
|
|
@@ -20,9 +21,9 @@ behavior.update(candidate.behavior)
|
|
20
21
|
|
21
22
|
class NtupleEvents(behavior["NanoEvents"]): # type: ignore[misc, valid-type, name-defined]
|
22
23
|
def __repr__(self):
|
23
|
-
return f"<event {getattr(self,'runNumber','??')}:\
|
24
|
-
{getattr(self,'eventNumber','??')}:\
|
25
|
-
{getattr(self,'mcChannelNumber','??')}>"
|
24
|
+
return f"<event {getattr(self, 'runNumber', '??')}:\
|
25
|
+
{getattr(self, 'eventNumber', '??')}:\
|
26
|
+
{getattr(self, 'mcChannelNumber', '??')}>"
|
26
27
|
|
27
28
|
|
28
29
|
behavior["NanoEvents"] = NtupleEvents
|
@@ -49,6 +50,10 @@ class Pass(base.NanoCollection, base.Systematic): ...
|
|
49
50
|
|
50
51
|
_set_repr_name("Pass")
|
51
52
|
|
53
|
+
behavior.update(
|
54
|
+
awkward._util.copy_behaviors("PtEtaPhiMLorentzVector", "Particle", behavior)
|
55
|
+
)
|
56
|
+
|
52
57
|
|
53
58
|
@awkward.mixin_class(behavior)
|
54
59
|
class Particle(vector.PtEtaPhiMLorentzVector):
|
@@ -97,42 +102,45 @@ class Particle(vector.PtEtaPhiMLorentzVector):
|
|
97
102
|
|
98
103
|
_set_repr_name("Particle")
|
99
104
|
|
105
|
+
ParticleArray.ProjectionClass2D = vector.TwoVectorArray # noqa: F821
|
106
|
+
ParticleArray.ProjectionClass3D = vector.ThreeVectorArray # noqa: F821
|
107
|
+
ParticleArray.ProjectionClass4D = ParticleArray # noqa: F821
|
108
|
+
ParticleArray.MomentumClass = vector.LorentzVectorArray # noqa: F821
|
100
109
|
|
101
|
-
@awkward.mixin_class(behavior)
|
102
|
-
class MasslessParticle(Particle, base.NanoCollection):
|
103
|
-
@property
|
104
|
-
def mass(self):
|
105
|
-
r"""Invariant mass (+, -, -, -)
|
106
110
|
|
107
|
-
|
108
|
-
"""
|
109
|
-
return 0.0 * self.pt
|
110
|
-
|
111
|
-
|
112
|
-
_set_repr_name("MasslessParticle")
|
111
|
+
behavior.update(awkward._util.copy_behaviors("PolarTwoVector", "MissingET", behavior))
|
113
112
|
|
114
113
|
|
115
114
|
@awkward.mixin_class(behavior)
|
116
|
-
class MissingET(
|
115
|
+
class MissingET(vector.PolarTwoVector, base.NanoCollection, base.Systematic):
|
117
116
|
@property
|
118
|
-
def
|
119
|
-
"""
|
120
|
-
return self["met"]
|
117
|
+
def r(self):
|
118
|
+
"""Distance from origin in XY plane"""
|
119
|
+
return self["met"]
|
121
120
|
|
122
|
-
@property
|
123
|
-
def eta(self):
|
124
|
-
r"""Pseudorapidity
|
125
121
|
|
126
|
-
|
127
|
-
"""
|
128
|
-
return 0.0 * self.pt
|
122
|
+
_set_repr_name("MissingET")
|
129
123
|
|
124
|
+
MissingETArray.ProjectionClass2D = MissingETArray # noqa: F821
|
125
|
+
MissingETArray.ProjectionClass3D = vector.SphericalThreeVectorArray # noqa: F821
|
126
|
+
MissingETArray.ProjectionClass4D = vector.LorentzVectorArray # noqa: F821
|
127
|
+
MissingETArray.MomentumClass = MissingETArray # noqa: F821
|
130
128
|
|
131
|
-
|
129
|
+
behavior.update(awkward._util.copy_behaviors("Particle", "Photon", behavior))
|
132
130
|
|
133
131
|
|
134
132
|
@awkward.mixin_class(behavior)
|
135
|
-
class Photon(
|
133
|
+
class Photon(Particle, base.NanoCollection, base.Systematic):
|
134
|
+
@property
|
135
|
+
def mass(self):
|
136
|
+
"""Return zero mass for photon."""
|
137
|
+
return awkward.zeros_like(self.pt)
|
138
|
+
|
139
|
+
@property
|
140
|
+
def charge(self):
|
141
|
+
"""Return zero charge for photon."""
|
142
|
+
return awkward.zeros_like(self.pt)
|
143
|
+
|
136
144
|
@property
|
137
145
|
def isEM(self):
|
138
146
|
return self.isEM_syst.NOSYS == 0
|
@@ -146,20 +154,68 @@ class Photon(MasslessParticle, base.NanoCollection, base.Systematic):
|
|
146
154
|
|
147
155
|
_set_repr_name("Photon")
|
148
156
|
|
157
|
+
PhotonArray.ProjectionClass2D = vector.TwoVectorArray # noqa: F821
|
158
|
+
PhotonArray.ProjectionClass3D = vector.ThreeVectorArray # noqa: F821
|
159
|
+
PhotonArray.ProjectionClass4D = PhotonArray # noqa: F821
|
160
|
+
PhotonArray.MomentumClass = vector.LorentzVectorArray # noqa: F821
|
161
|
+
|
162
|
+
behavior.update(awkward._util.copy_behaviors("Particle", "Electron", behavior))
|
163
|
+
|
149
164
|
|
150
165
|
@awkward.mixin_class(behavior)
|
151
|
-
class Electron(
|
166
|
+
class Electron(Particle, base.NanoCollection, base.Systematic):
|
167
|
+
@property
|
168
|
+
def mass(self):
|
169
|
+
"""Electron mass in GeV"""
|
170
|
+
return particle.literals.e_minus.mass / 1.0e3
|
152
171
|
|
153
172
|
|
154
173
|
_set_repr_name("Electron")
|
155
174
|
|
175
|
+
ElectronArray.ProjectionClass2D = vector.TwoVectorArray # noqa: F821
|
176
|
+
ElectronArray.ProjectionClass3D = vector.ThreeVectorArray # noqa: F821
|
177
|
+
ElectronArray.ProjectionClass4D = ElectronArray # noqa: F821
|
178
|
+
ElectronArray.MomentumClass = vector.LorentzVectorArray # noqa: F821
|
179
|
+
|
180
|
+
behavior.update(awkward._util.copy_behaviors("Particle", "Muon", behavior))
|
181
|
+
|
156
182
|
|
157
183
|
@awkward.mixin_class(behavior)
|
158
|
-
class Muon(
|
184
|
+
class Muon(Particle, base.NanoCollection, base.Systematic):
|
185
|
+
@property
|
186
|
+
def mass(self):
|
187
|
+
"""Muon mass in GeV"""
|
188
|
+
return particle.literals.mu_minus.mass / 1.0e3
|
159
189
|
|
160
190
|
|
161
191
|
_set_repr_name("Muon")
|
162
192
|
|
193
|
+
MuonArray.ProjectionClass2D = vector.TwoVectorArray # noqa: F821
|
194
|
+
MuonArray.ProjectionClass3D = vector.ThreeVectorArray # noqa: F821
|
195
|
+
MuonArray.ProjectionClass4D = MuonArray # noqa: F821
|
196
|
+
MuonArray.MomentumClass = vector.LorentzVectorArray # noqa: F821
|
197
|
+
|
198
|
+
behavior.update(awkward._util.copy_behaviors("Particle", "Tau", behavior))
|
199
|
+
|
200
|
+
|
201
|
+
@awkward.mixin_class(behavior)
|
202
|
+
class Tau(Particle, base.NanoCollection, base.Systematic):
|
203
|
+
@property
|
204
|
+
def mass(self):
|
205
|
+
"""Tau mass in GeV"""
|
206
|
+
return particle.literals.tau_minus.mass / 1.0e3
|
207
|
+
|
208
|
+
|
209
|
+
_set_repr_name("Tau")
|
210
|
+
|
211
|
+
TauArray.ProjectionClass2D = vector.TwoVectorArray # noqa: F821
|
212
|
+
TauArray.ProjectionClass3D = vector.ThreeVectorArray # noqa: F821
|
213
|
+
TauArray.ProjectionClass4D = TauArray # noqa: F821
|
214
|
+
TauArray.MomentumClass = vector.LorentzVectorArray # noqa: F821
|
215
|
+
|
216
|
+
|
217
|
+
behavior.update(awkward._util.copy_behaviors("Particle", "Jet", behavior))
|
218
|
+
|
163
219
|
|
164
220
|
@awkward.mixin_class(behavior)
|
165
221
|
class Jet(Particle, base.NanoCollection, base.Systematic): ...
|
@@ -167,15 +223,19 @@ class Jet(Particle, base.NanoCollection, base.Systematic): ...
|
|
167
223
|
|
168
224
|
_set_repr_name("Jet")
|
169
225
|
|
226
|
+
JetArray.ProjectionClass2D = vector.TwoVectorArray # noqa: F821
|
227
|
+
JetArray.ProjectionClass3D = vector.ThreeVectorArray # noqa: F821
|
228
|
+
JetArray.ProjectionClass4D = JetArray # noqa: F821
|
229
|
+
JetArray.MomentumClass = vector.LorentzVectorArray # noqa: F821
|
170
230
|
|
171
231
|
__all__ = [
|
172
|
-
"
|
173
|
-
"
|
174
|
-
"Pass",
|
232
|
+
"Electron",
|
233
|
+
"Jet",
|
175
234
|
"MissingET",
|
235
|
+
"Muon",
|
236
|
+
"NtupleEvents",
|
176
237
|
"Particle",
|
238
|
+
"Pass",
|
177
239
|
"Photon",
|
178
|
-
"
|
179
|
-
"Muon",
|
180
|
-
"Jet",
|
240
|
+
"Weight",
|
181
241
|
]
|
atlas_schema/typing_compat.py
CHANGED
@@ -5,15 +5,10 @@ Typing helpers.
|
|
5
5
|
from __future__ import annotations
|
6
6
|
|
7
7
|
import sys
|
8
|
-
from typing import
|
8
|
+
from typing import Annotated
|
9
9
|
|
10
10
|
import awkward
|
11
11
|
|
12
|
-
if sys.version_info >= (3, 9):
|
13
|
-
from typing import Annotated
|
14
|
-
else:
|
15
|
-
from typing_extensions import Annotated
|
16
|
-
|
17
12
|
if sys.version_info >= (3, 10):
|
18
13
|
from typing import TypeAlias
|
19
14
|
else:
|
@@ -24,6 +19,6 @@ if sys.version_info >= (3, 11):
|
|
24
19
|
else:
|
25
20
|
from typing_extensions import Self
|
26
21
|
|
27
|
-
Behavior: TypeAlias =
|
22
|
+
Behavior: TypeAlias = dict[str, type[awkward.Record]]
|
28
23
|
|
29
24
|
__all__ = ("Annotated", "Behavior", "Self")
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: atlas-schema
|
3
|
-
Version: 0.1
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: Helper python package for ATLAS Common NTuple Analysis work.
|
5
5
|
Project-URL: Homepage, https://github.com/scipp-atlas/atlas-schema
|
6
6
|
Project-URL: Bug Tracker, https://github.com/scipp-atlas/atlas-schema/issues
|
@@ -209,6 +209,7 @@ License:
|
|
209
209
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
210
210
|
See the License for the specific language governing permissions and
|
211
211
|
limitations under the License.
|
212
|
+
License-File: LICENSE
|
212
213
|
Classifier: Development Status :: 1 - Planning
|
213
214
|
Classifier: Intended Audience :: Developers
|
214
215
|
Classifier: Intended Audience :: Science/Research
|
@@ -217,23 +218,27 @@ Classifier: Operating System :: OS Independent
|
|
217
218
|
Classifier: Programming Language :: Python
|
218
219
|
Classifier: Programming Language :: Python :: 3
|
219
220
|
Classifier: Programming Language :: Python :: 3 :: Only
|
220
|
-
Classifier: Programming Language :: Python :: 3.8
|
221
221
|
Classifier: Programming Language :: Python :: 3.9
|
222
222
|
Classifier: Programming Language :: Python :: 3.10
|
223
223
|
Classifier: Programming Language :: Python :: 3.11
|
224
224
|
Classifier: Programming Language :: Python :: 3.12
|
225
225
|
Classifier: Topic :: Scientific/Engineering
|
226
226
|
Classifier: Typing :: Typed
|
227
|
-
Requires-Python: >=3.
|
227
|
+
Requires-Python: >=3.9
|
228
228
|
Requires-Dist: coffea[dask]>=2024.4.1
|
229
|
+
Requires-Dist: particle>=0.25.0
|
229
230
|
Provides-Extra: dev
|
230
231
|
Requires-Dist: pytest-cov>=3; extra == 'dev'
|
231
232
|
Requires-Dist: pytest>=6; extra == 'dev'
|
232
233
|
Provides-Extra: docs
|
233
234
|
Requires-Dist: furo>=2023.08.17; extra == 'docs'
|
235
|
+
Requires-Dist: intersphinx-registry>=0.2411.17; extra == 'docs'
|
236
|
+
Requires-Dist: ipywidgets; extra == 'docs'
|
234
237
|
Requires-Dist: myst-parser>=0.13; extra == 'docs'
|
235
238
|
Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
|
236
|
-
Requires-Dist: sphinx-
|
239
|
+
Requires-Dist: sphinx-click; extra == 'docs'
|
240
|
+
Requires-Dist: sphinx-copybutton!=0.5.1,>=0.3.2; extra == 'docs'
|
241
|
+
Requires-Dist: sphinx-issues; extra == 'docs'
|
237
242
|
Requires-Dist: sphinx>=7.0; extra == 'docs'
|
238
243
|
Provides-Extra: test
|
239
244
|
Requires-Dist: build; extra == 'test'
|
@@ -244,7 +249,7 @@ Requires-Dist: tbump>=6.7.0; extra == 'test'
|
|
244
249
|
Requires-Dist: twine; extra == 'test'
|
245
250
|
Description-Content-Type: text/markdown
|
246
251
|
|
247
|
-
# atlas-schema v0.1
|
252
|
+
# atlas-schema v0.2.1
|
248
253
|
|
249
254
|
[![Actions Status][actions-badge]][actions-link]
|
250
255
|
[![Documentation Status][rtd-badge]][rtd-link]
|
@@ -0,0 +1,12 @@
|
|
1
|
+
atlas_schema/__init__.py,sha256=mwY_EsW32pdZxihzpAg_enYPl7S-_d27idXKIlYvVqE,425
|
2
|
+
atlas_schema/_version.py,sha256=MxUhzLJIZQfEpDTTcKSxciTGrMLd5v2VmMlHa2HGeo0,411
|
3
|
+
atlas_schema/_version.pyi,sha256=j5kbzfm6lOn8BzASXWjGIA1yT0OlHTWqlbyZ8Si_o0E,118
|
4
|
+
atlas_schema/enums.py,sha256=a44N1UbUA4K1y6wzK7zBUxbw4xT02J7vLeSqT03dFaU,2941
|
5
|
+
atlas_schema/methods.py,sha256=K7u6HGKXrtpMg7jjCjKPwIEnknOShUH4HQ1ibKBzkZ0,6832
|
6
|
+
atlas_schema/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
atlas_schema/schema.py,sha256=YRVaiDa5Evl2HZ9CzH23d0-TLkvxqyvFQhn0ixyWCcw,7668
|
8
|
+
atlas_schema/typing_compat.py,sha256=RwkxiiYbXO9yxkeaL8CdRaOHH7wq6vO_epg1YD7RbRs,439
|
9
|
+
atlas_schema-0.2.1.dist-info/METADATA,sha256=KFUTH5W2HUx8wJOzznaalEqLc9frqeMcbPJ1TmNyTYc,16662
|
10
|
+
atlas_schema-0.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
11
|
+
atlas_schema-0.2.1.dist-info/licenses/LICENSE,sha256=snem82NV8fgAi4DKaaUIfReaM5RqIWbH5OOXOvy40_w,11344
|
12
|
+
atlas_schema-0.2.1.dist-info/RECORD,,
|
@@ -1,12 +0,0 @@
|
|
1
|
-
atlas_schema/__init__.py,sha256=eba1N4_cWS5YzEOgDdCJGiPKqUtO-Vn7t8dYq0Q6gk8,354
|
2
|
-
atlas_schema/_version.py,sha256=IMl2Pr_Sy4LVRKy_Sm4CdwUl1Gryous6ncL96EMYsnM,411
|
3
|
-
atlas_schema/_version.pyi,sha256=j5kbzfm6lOn8BzASXWjGIA1yT0OlHTWqlbyZ8Si_o0E,118
|
4
|
-
atlas_schema/enums.py,sha256=RktHMdqNcjcqHOtXzRP5pnakhrfo0VfRl60Mqsa7i74,5522
|
5
|
-
atlas_schema/methods.py,sha256=Vo9pQ52ZVm13TBpJ6KiiDlN2kS1MMGBMLjwRPB62ces,4111
|
6
|
-
atlas_schema/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
atlas_schema/schema.py,sha256=YRVaiDa5Evl2HZ9CzH23d0-TLkvxqyvFQhn0ixyWCcw,7668
|
8
|
-
atlas_schema/typing_compat.py,sha256=ZEdCro9ZfwqyEXrcxpkgyQqmpPiiLFc6JhDr9qFlD4w,555
|
9
|
-
atlas_schema-0.1.0.dist-info/METADATA,sha256=tiETJp8Ho_BdhjcKHExLrsxt4_z-65d-ovTBszl6pU8,16445
|
10
|
-
atlas_schema-0.1.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
11
|
-
atlas_schema-0.1.0.dist-info/licenses/LICENSE,sha256=snem82NV8fgAi4DKaaUIfReaM5RqIWbH5OOXOvy40_w,11344
|
12
|
-
atlas_schema-0.1.0.dist-info/RECORD,,
|
File without changes
|