opticedge-types 1.0.4__tar.gz

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.
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: opticedge_types
3
+ Version: 1.0.4
4
+ Summary: Common types for opticedge
5
+ Author-email: velopace <velopace7@gmail.com>
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+ Provides-Extra: dev
File without changes
File without changes
@@ -0,0 +1,27 @@
1
+ from enum import IntEnum, Enum
2
+
3
+ class ApprovalStatus(IntEnum):
4
+ RESCAN = -2
5
+ PENDING = -1
6
+ FAILED = 0
7
+ APPROVED = 1
8
+ APPROVING = 999
9
+
10
+
11
+ class GradingField(Enum):
12
+ GRADING = "grading"
13
+ CENTER = "centering_grading"
14
+ SURFACE = "surface_grading"
15
+ EDGE = "edge_grading"
16
+ CORNER = "corner_grading"
17
+ ENVIRONMENT = "grading_environment"
18
+ CONFIDENCE = "grading_confidence"
19
+ STRUCTURE = "card_structure"
20
+
21
+
22
+ class CardType(Enum):
23
+ POKEMON = "pokemon",
24
+ LORCANA = "lorcana",
25
+ MAGIC = "magic",
26
+ YUGIOH = "yugioh",
27
+ VIDEO_GAMES = "video_games"
@@ -0,0 +1,7 @@
1
+ from enum import Enum
2
+
3
+ class CollectorType(Enum):
4
+ NON_MEMBER = -1
5
+ ELITE = 0
6
+ ROOKIE = 1
7
+ FREE = 2
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: opticedge_types
3
+ Version: 1.0.4
4
+ Summary: Common types for opticedge
5
+ Author-email: velopace <velopace7@gmail.com>
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+ Provides-Extra: dev
@@ -0,0 +1,11 @@
1
+ README.md
2
+ pyproject.toml
3
+ opticedge_types/__init__.py
4
+ opticedge_types.egg-info/PKG-INFO
5
+ opticedge_types.egg-info/SOURCES.txt
6
+ opticedge_types.egg-info/dependency_links.txt
7
+ opticedge_types.egg-info/requires.txt
8
+ opticedge_types.egg-info/top_level.txt
9
+ opticedge_types/enums/__init__.py
10
+ opticedge_types/enums/card.py
11
+ opticedge_types/enums/user.py
@@ -0,0 +1 @@
1
+ opticedge_types
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = [ "setuptools", "wheel",]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "opticedge_types"
7
+ version = "1.0.4"
8
+ description = "Common types for opticedge"
9
+ readme = "README.md"
10
+ dependencies = []
11
+ [[project.authors]]
12
+ name = "velopace"
13
+ email = "velopace7@gmail.com"
14
+
15
+ [project.optional-dependencies]
16
+ dev = []
17
+
18
+ [project.license]
19
+ text = "MIT"
20
+
21
+ [tool.setuptools.package-data]
22
+ opticedge_cloud_utils = [ "py.typed",]
23
+
24
+ [tool.setuptools.packages.find]
25
+ where = [ ".",]
26
+ include = [ "opticedge_types*",]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+