maleo-enums 0.0.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.
File without changes
maleo/enums/cache.py ADDED
@@ -0,0 +1,12 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class CacheOrigin(StrEnum):
5
+ CLIENT = "client"
6
+ SERVICE = "service"
7
+
8
+
9
+ class CacheLayer(StrEnum):
10
+ REPOSITORY = "repository"
11
+ SERVICE = "service"
12
+ CONTROLLER = "controller"
@@ -0,0 +1,6 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Cardinality(StrEnum):
5
+ SINGLE = "single"
6
+ MULTIPLE = "multiple"
maleo/enums/case.py ADDED
@@ -0,0 +1,7 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Case(StrEnum):
5
+ CAMEL = "camel"
6
+ PASCAL = "pascal"
7
+ SNAKE = "snake"
maleo/enums/client.py ADDED
@@ -0,0 +1,6 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class ClientCategory(StrEnum):
5
+ GOOGLE = "google"
6
+ MALEO = "maleo"
maleo/enums/code.py ADDED
@@ -0,0 +1,34 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Error(StrEnum):
5
+ BAD_REQUEST = "MAL-ERR-CLI-BDR-001"
6
+ UNAUTHORIZED = "MAL-ERR-CLI-ATH-001"
7
+ FORBIDDEN = "MAL-ERR-CLI-FBD-001"
8
+ NOT_FOUND = "MAL-ERR-CLI-NTF-001"
9
+ METHOD_NOT_ALLOWED = "MAL-ERR-CLI-MNA-001"
10
+ CONFLICT = "MAL-ERR-CLI-CFL-001"
11
+ UNPROCESSABLE_ENTITY = "MAL-ERR-CLI-UPE-001"
12
+ TOO_MANY_REQUESTS = "MAL-ERR-CLI-TMR-001"
13
+ INTERNAL_SERVER_ERROR = "MAL-ERR-SRV-ISE-001"
14
+ DATABASE_ERROR = "MAL-ERR-SRV-ISE-002"
15
+ NOT_IMPLEMENTED = "MAL-ERR-SRV-NIM-001"
16
+ BAD_GATEWAY = "MAL-ERR-SRV-BDG-001"
17
+ SERVICE_UNAVAILABLE = "MAL-ERR-SRV-SUN-001"
18
+
19
+
20
+ class Result(StrEnum):
21
+ ANY_DATA = "MAL-RES-ADT-001"
22
+ NO_DATA = "MAL-RES-NDT-001"
23
+ SINGLE_DATA = "MAL-RES-SGD-001"
24
+ CREATE_SINGLE_DATA = "MAL-RES-SGD-002"
25
+ UPDATE_SINGLE_DATA = "MAL-RES-SGD-003"
26
+ OPTIONAL_SINGLE_DATA = "MAL-RES-OSD-001"
27
+ READ_SINGLE_DATA = "MAL-RES-OSD-002"
28
+ DELETE_SINGLE_DATA = "MAL-RES-OSD-003"
29
+ MULTIPLE_DATA = "MAL-RES-MTD-001"
30
+ CREATE_MULTIPLE_DATA = "MAL-RES-MTD-002"
31
+ UPDATE_MULTIPLE_DATA = "MAL-RES-MTD-003"
32
+ OPTIONAL_MULTIPLE_DATA = "MAL-RES-OMD-001"
33
+ READ_MULTIPLE_DATA = "MAL-RES-OMD-002"
34
+ DELETE_MULTIPLE_DATA = "MAL-RES-OMD-003"
@@ -0,0 +1,10 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class ServiceController(StrEnum):
5
+ REST = "rest"
6
+ MESSAGE = "message"
7
+
8
+
9
+ class ClientController(StrEnum):
10
+ HTTP = "http"
@@ -0,0 +1,7 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Environment(StrEnum):
5
+ LOCAL = "local"
6
+ STAGING = "staging"
7
+ PRODUCTION = "production"
maleo/enums/error.py ADDED
@@ -0,0 +1,17 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Error(StrEnum):
5
+ BAD_REQUEST = "client.bad_request"
6
+ UNAUTHORIZED = "client.unauthorized"
7
+ FORBIDDEN = "client.forbidden"
8
+ NOT_FOUND = "client.not_found"
9
+ CONFLICT = "client.conflict"
10
+ METHOD_NOT_ALLOWED = "client.method_not_allowed"
11
+ UNPROCESSABLE_ENTITY = "client.unprocessable_entity"
12
+ TOO_MANY_REQUESTS = "client.too_many_requests"
13
+ INTERNAL_SERVER_ERROR = "server.internal_server_error"
14
+ DATABASE_ERROR = "server.internal_server_error.database_error"
15
+ NOT_IMPLEMENTED = "server.not_implemented"
16
+ BAD_GATEWAY = "server.bad_gateway"
17
+ SERVICE_UNAVAILABLE = "server.service_unavailable"
@@ -0,0 +1,11 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class ApplicationExecution(StrEnum):
5
+ DIRECT = "direct"
6
+ CONTAINER = "container"
7
+
8
+
9
+ class Execution(StrEnum):
10
+ SYNC = "sync"
11
+ ASYNC = "async"
@@ -0,0 +1,19 @@
1
+ from enum import IntEnum
2
+
3
+
4
+ class Expiration(IntEnum):
5
+ EXP_15SC = int(15)
6
+ EXP_30SC = int(30)
7
+ EXP_1MN = int(1 * 60)
8
+ EXP_5MN = int(5 * 60)
9
+ EXP_10MN = int(10 * 60)
10
+ EXP_15MN = int(15 * 60)
11
+ EXP_30MN = int(30 * 60)
12
+ EXP_1HR = int(1 * 60 * 60)
13
+ EXP_6HR = int(6 * 60 * 60)
14
+ EXP_12HR = int(12 * 60 * 60)
15
+ EXP_1DY = int(1 * 24 * 60 * 60)
16
+ EXP_3DY = int(3 * 24 * 60 * 60)
17
+ EXP_1WK = int(1 * 7 * 24 * 60 * 60)
18
+ EXP_2WK = int(2 * 7 * 24 * 60 * 60)
19
+ EXP_1MO = int(1 * 30 * 24 * 60 * 60)
maleo/enums/field.py ADDED
@@ -0,0 +1,11 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class ExcludableField(StrEnum):
5
+ CREATED_AT = "created_at"
6
+ UPDATED_AT = "updated_at"
7
+ DELETED_AT = "deleted_at"
8
+ RESTORED_AT = "restored_at"
9
+ DEACTIVATED_AT = "deactivated_at"
10
+ ACTIVATED_AT = "activated_at"
11
+ STATUS = "status"
maleo/enums/hash.py ADDED
@@ -0,0 +1,6 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Mode(StrEnum):
5
+ OBJECT = "object"
6
+ DIGEST = "digest"
maleo/enums/key.py ADDED
@@ -0,0 +1,11 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class RSAKeyType(StrEnum):
5
+ PRIVATE = "private"
6
+ PUBLIC = "public"
7
+
8
+
9
+ class KeyFormat(StrEnum):
10
+ BYTES = "bytes"
11
+ STRING = "string"
maleo/enums/logging.py ADDED
@@ -0,0 +1,24 @@
1
+ import logging
2
+ from enum import IntEnum, StrEnum
3
+
4
+
5
+ class LoggerType(StrEnum):
6
+ APPLICATION = "application"
7
+ CACHE = "cache"
8
+ CLIENT = "client"
9
+ CONTROLLER = "controller"
10
+ DATABASE = "database"
11
+ MIDDLEWARE = "middleware"
12
+ REPOSITORY = "repository"
13
+ SERVICE = "service"
14
+
15
+
16
+ class LogLevel(IntEnum):
17
+ CRITICAL = logging.CRITICAL
18
+ FATAL = logging.FATAL
19
+ ERROR = logging.ERROR
20
+ WARNING = logging.WARNING
21
+ WARN = logging.WARN
22
+ INFO = logging.INFO
23
+ DEBUG = logging.DEBUG
24
+ NOTSET = logging.NOTSET
@@ -0,0 +1,81 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class OperationType(StrEnum):
5
+ RESOURCE = "resource"
6
+ REQUEST = "request"
7
+ SYSTEM = "system"
8
+
9
+
10
+ class SystemOperationType(StrEnum):
11
+ BACKGROUND_JOB = "background_job"
12
+ CONFIGURATION_UPDATE = "configuration_update"
13
+ CRON_JOB = "cron_job"
14
+ DATABASE_CONNECTION = "database_connection"
15
+ DISPOSAL = "disposal"
16
+ HEALTH_CHECK = "health_check"
17
+ HEARTBEAT = "heartbeat"
18
+ METRIC_REPORT = "metric_report"
19
+ INITIALIZATION = "initialization"
20
+ STARTUP = "startup"
21
+ SHUTDOWN = "shutdown"
22
+ SYSTEM_ALERT = "system_alert"
23
+
24
+
25
+ class ResourceOperationType(StrEnum):
26
+ CREATE = "create"
27
+ READ = "read"
28
+ UPDATE = "update"
29
+ DELETE = "delete"
30
+
31
+
32
+ class ResourceOperationCreateType(StrEnum):
33
+ NEW = "new"
34
+ RESTORE = "restore"
35
+
36
+
37
+ class ResourceOperationUpdateType(StrEnum):
38
+ DATA = "data"
39
+ STATUS = "status"
40
+
41
+
42
+ class ResourceOperationDataUpdateType(StrEnum):
43
+ FULL = "full"
44
+ PARTIAL = "partial"
45
+
46
+
47
+ class ResourceOperationStatusUpdateType(StrEnum):
48
+ ACTIVATE = "activate"
49
+ DEACTIVATE = "deactivate"
50
+ RESTORE = "restore"
51
+ DELETE = "delete"
52
+
53
+
54
+ class OperationOrigin(StrEnum):
55
+ SERVICE = "service"
56
+ CLIENT = "client"
57
+ UTILITY = "utility"
58
+
59
+
60
+ class OperationLayer(StrEnum):
61
+ INFRASTRUCTURE = "infrastructure"
62
+ CONFIGURATION = "configuration"
63
+ UTILITY = "utility"
64
+ MIDDLEWARE = "middleware"
65
+ CONTROLLER = "controller"
66
+ SERVICE = "service"
67
+ REPOSITORY = "repository"
68
+ INTERNAL = "internal"
69
+ OTHER = "other"
70
+
71
+
72
+ class OperationTarget(StrEnum):
73
+ MONITORING = "monitoring"
74
+ CACHE = "cache"
75
+ CONTROLLER = "controller"
76
+ DATABASE = "database"
77
+ INTERNAL = "internal"
78
+ MICROSERVICE = "microservice"
79
+ SERVICE = "service"
80
+ REPOSITORY = "repository"
81
+ THIRD_PARTY = "third_party"
@@ -0,0 +1,8 @@
1
+ from enum import IntEnum
2
+
3
+
4
+ class Limit(IntEnum):
5
+ LIM_10 = 10
6
+ LIM_20 = 20
7
+ LIM_50 = 50
8
+ LIM_100 = 100
maleo/enums/request.py ADDED
@@ -0,0 +1,22 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class Method(StrEnum):
5
+ GET = "GET"
6
+ POST = "POST"
7
+ PATCH = "PATCH"
8
+ PUT = "PUT"
9
+ DELETE = "DELETE"
10
+ OPTIONS = "OPTIONS"
11
+
12
+
13
+ class Header(StrEnum):
14
+ AUTHORIZATION = "authorization"
15
+ CONTENT_TYPE = "content-type"
16
+ X_NEW_AUTHORIZATION = "x-new-authorization"
17
+ X_OPERATION_ID = "x-operation-id"
18
+ X_PROCESS_TIME = "x-process-time"
19
+ X_REQUEST_ID = "x-request-id"
20
+ X_REQUESTED_AT = "x-requested-at"
21
+ X_RESPONDED_AT = "x-responded-at"
22
+ X_SIGNATURE = "x-signature"
maleo/enums/secret.py ADDED
@@ -0,0 +1,11 @@
1
+ from enum import Enum, StrEnum
2
+
3
+
4
+ class SecretFormat(StrEnum):
5
+ BYTES = "bytes"
6
+ STRING = "string"
7
+
8
+
9
+ class SecretFormatType(Enum):
10
+ BYTES = bytes
11
+ STRING = str
maleo/enums/service.py ADDED
@@ -0,0 +1,83 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class ServiceType(StrEnum):
5
+ BACKEND = "backend"
6
+ FRONTEND = "frontend"
7
+
8
+
9
+ class Category(StrEnum):
10
+ CORE = "core"
11
+ AI = "ai"
12
+
13
+
14
+ class ShortServiceKey(StrEnum):
15
+ STUDIO = "studio"
16
+ NEXUS = "nexus"
17
+ TELEMETRY = "telemetry"
18
+ METADATA = "metadata"
19
+ IDENTITY = "identity"
20
+ ACCESS = "access"
21
+ WORKSHOP = "workshop"
22
+ RESEARCH = "research"
23
+ SOAPIE = "soapie"
24
+ MEDIX = "medix"
25
+ DICOM = "dicom"
26
+ SCRIBE = "scribe"
27
+ CDS = "cds"
28
+ IMAGING = "imaging"
29
+ MCU = "mcu"
30
+
31
+
32
+ class ServiceKey(StrEnum):
33
+ STUDIO = "maleo-studio"
34
+ NEXUS = "maleo-nexus"
35
+ TELEMETRY = "maleo-telemetry"
36
+ METADATA = "maleo-metadata"
37
+ IDENTITY = "maleo-identity"
38
+ ACCESS = "maleo-access"
39
+ WORKSHOP = "maleo-workshop"
40
+ RESEARCH = "maleo-research"
41
+ SOAPIE = "maleo-soapie"
42
+ MEDIX = "maleo-medix"
43
+ DICOM = "maleo-dicom"
44
+ SCRIBE = "maleo-scribe"
45
+ CDS = "maleo-cds"
46
+ IMAGING = "maleo-imaging"
47
+ MCU = "maleo-mcu"
48
+
49
+
50
+ class ShortServiceName(StrEnum):
51
+ STUDIO = "Studio"
52
+ NEXUS = "Nexus"
53
+ TELEMETRY = "Telemetry"
54
+ METADATA = "Metadata"
55
+ IDENTITY = "Identity"
56
+ ACCESS = "Access"
57
+ WORKSHOP = "Workshop"
58
+ RESEARCH = "Research"
59
+ SOAPIE = "SOAPIE"
60
+ MEDIX = "Medix"
61
+ DICOM = "DICON"
62
+ SCRIBE = "Scribe"
63
+ CDS = "CDS"
64
+ IMAGING = "Imaging"
65
+ MCU = "MCU"
66
+
67
+
68
+ class ServiceName(StrEnum):
69
+ STUDIO = "MaleoStudio"
70
+ NEXUS = "MaleoNexus"
71
+ TELEMETRY = "MaleoTelemetry"
72
+ METADATA = "MaleoMetadata"
73
+ IDENTITY = "MaleoIdentity"
74
+ ACCESS = "MaleoAccess"
75
+ WORKSHOP = "MaleoWorkshop"
76
+ RESEARCH = "MaleoResearch"
77
+ SOAPIE = "MaleoSOAPIE"
78
+ MEDIX = "MaleoMedix"
79
+ DICOM = "MaleoDICON"
80
+ SCRIBE = "MaleoScribe"
81
+ CDS = "MaleoCDS"
82
+ IMAGING = "MaleoImaging"
83
+ MCU = "MaleoMCU"
maleo/enums/sort.py ADDED
@@ -0,0 +1,6 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class SortOrder(StrEnum):
5
+ ASC = "asc"
6
+ DESC = "desc"
maleo/enums/status.py ADDED
@@ -0,0 +1,7 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class DataStatus(StrEnum):
5
+ DELETED = "deleted"
6
+ INACTIVE = "inactive"
7
+ ACTIVE = "active"
@@ -0,0 +1,22 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class LifecycleTimestamp(StrEnum):
5
+ CREATED_AT = "created_at"
6
+ UPDATED_AT = "updated_at"
7
+
8
+
9
+ class StatusTimestamp(StrEnum):
10
+ DELETED_AT = "deleted_at"
11
+ RESTORED_AT = "restored_at"
12
+ DEACTIVATED_AT = "deactivated_at"
13
+ ACTIVATED_AT = "activated_at"
14
+
15
+
16
+ class DataTimestamp(StrEnum):
17
+ CREATED_AT = "created_at"
18
+ UPDATED_AT = "updated_at"
19
+ DELETED_AT = "deleted_at"
20
+ RESTORED_AT = "restored_at"
21
+ DEACTIVATED_AT = "deactivated_at"
22
+ ACTIVATED_AT = "activated_at"
maleo/enums/token.py ADDED
@@ -0,0 +1,6 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class TokenType(StrEnum):
5
+ REFRESH = "refresh"
6
+ ACCESS = "access"
maleo/enums/user.py ADDED
@@ -0,0 +1,7 @@
1
+ from enum import StrEnum
2
+
3
+
4
+ class PrivilegeLevel(StrEnum):
5
+ GENERAL = "general"
6
+ BASIC = "basic"
7
+ PRIVILEGED = "privileged"
@@ -0,0 +1,54 @@
1
+ Metadata-Version: 2.4
2
+ Name: maleo-enums
3
+ Version: 0.0.1
4
+ Summary: Enums package for MaleoSuite
5
+ Author-email: Agra Bima Yuda <agra@nexmedis.com>
6
+ License: Proprietary
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: black>=25.1.0
11
+ Requires-Dist: cfgv>=3.4.0
12
+ Requires-Dist: click>=8.2.1
13
+ Requires-Dist: distlib>=0.4.0
14
+ Requires-Dist: filelock>=3.19.1
15
+ Requires-Dist: identify>=2.6.13
16
+ Requires-Dist: mypy_extensions>=1.1.0
17
+ Requires-Dist: nodeenv>=1.9.1
18
+ Requires-Dist: packaging>=25.0
19
+ Requires-Dist: pathspec>=0.12.1
20
+ Requires-Dist: platformdirs>=4.4.0
21
+ Requires-Dist: pre_commit>=4.3.0
22
+ Requires-Dist: PyYAML>=6.0.2
23
+ Requires-Dist: virtualenv>=20.34.0
24
+ Dynamic: license-file
25
+
26
+ # README #
27
+
28
+ This README would normally document whatever steps are necessary to get your application up and running.
29
+
30
+ ### What is this repository for? ###
31
+
32
+ * Quick summary
33
+ * Version
34
+ * [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
35
+
36
+ ### How do I get set up? ###
37
+
38
+ * Summary of set up
39
+ * Configuration
40
+ * Dependencies
41
+ * Database configuration
42
+ * How to run tests
43
+ * Deployment instructions
44
+
45
+ ### Contribution guidelines ###
46
+
47
+ * Writing tests
48
+ * Code review
49
+ * Other guidelines
50
+
51
+ ### Who do I talk to? ###
52
+
53
+ * Repo owner or admin
54
+ * Other community or team contact
@@ -0,0 +1,30 @@
1
+ maleo/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ maleo/enums/cache.py,sha256=-TYkZ_JDK8gXhIzcwf48BS54PrthANJOshUvU6BGGtM,214
3
+ maleo/enums/cardinality.py,sha256=QMS6gSqppfGrH0USlvR08JMAJiFXR23X_rnQcdCpgiU,103
4
+ maleo/enums/case.py,sha256=MU4MxLJchqEaM-0Kt5bJP4BQIdwXzY_i3udpWZPG-ak,110
5
+ maleo/enums/client.py,sha256=OIib1qZgcSP0tI0nM2B1R6rb_dQqJE8HnGwFCDYuTKg,100
6
+ maleo/enums/code.py,sha256=fp3IpqE-SgwwLSNPiquzNM8By1KIF5aTTdY3vvnBGlc,1214
7
+ maleo/enums/controller.py,sha256=e9DliXrFhnYzEUCeMW6f4mhHy1WSOkQWN0VgCBewygs,156
8
+ maleo/enums/environment.py,sha256=G_dwaCEZ4QRZue9GUjhMLliOUGLzQzuQBuxSNozzwB8,129
9
+ maleo/enums/error.py,sha256=O9nKmNMKEeYqkV-6sxBNTNkKnVno5MEd0BlbnKubPeQ,660
10
+ maleo/enums/execution.py,sha256=LiaTCKAy0FWIkPgkFSf8WqlRCeHEjFzvMelXMTYVdU0,180
11
+ maleo/enums/expiration.py,sha256=1xjp24C2YFfcdnr4plcNmZpwUOVvFvK8ECKYKIEGr84,524
12
+ maleo/enums/field.py,sha256=kY75g9hqOxNAbuy-qtiWUREtTF2k9EjXl_leuJYMqfQ,275
13
+ maleo/enums/hash.py,sha256=WueigDxLZJv7dLFq8Gi3FSBVzw44czoWy7rs3MUS00A,92
14
+ maleo/enums/key.py,sha256=K67tfsQlKmP5V4dvi4Hb-OT8X0KUJ1uyQyGP3o_aDrQ,170
15
+ maleo/enums/logging.py,sha256=cw0c1i6TfndgKuz0QxuxdlxNwYBO2plyLsmHf6HkGck,535
16
+ maleo/enums/operation.py,sha256=MpwvD94FrPvsszVhZhkZtzMbz2jcdRrb6Av8NGnwe0s,1798
17
+ maleo/enums/pagination.py,sha256=vMkwBv251PiIg9ah6AxSWp65wx8DkWFmgxmcXQPbCL4,115
18
+ maleo/enums/request.py,sha256=G1Gtwg26vho0dkzT0NB_yBqqDY-nBNK9NijNZihqh6U,527
19
+ maleo/enums/secret.py,sha256=OB0EqD0uH1IeivOCqAYUn0O8YbOQDuoV8mfGbXaJJ3A,171
20
+ maleo/enums/service.py,sha256=S1AA2pS4e9xSdPEXVt8NmpXDbI-vYBrA9cIMGo2iGlo,1801
21
+ maleo/enums/sort.py,sha256=_1W6uUO2cHY6FQT2eXRNOt6_RwBvQQ0OUqBNGt-vp5k,87
22
+ maleo/enums/status.py,sha256=bwdDNx_9caQUsTzXBOcOsrYCnZt1XRHwcxDjDWMz-2E,126
23
+ maleo/enums/timestamp.py,sha256=YN-11Lzf69is5vnX7qPnWpuqF5vL1AUiAv2aEeJgK5o,516
24
+ maleo/enums/token.py,sha256=vMhmXRoFccJymOrHvjbYL9lOW9crPA8GzpqJ3uDsz64,99
25
+ maleo/enums/user.py,sha256=UduAoVpJq7WetBQ2Dhlc3yW1J6iAhfLcWtQlh1bMn8A,132
26
+ maleo_enums-0.0.1.dist-info/licenses/LICENSE,sha256=aftGsecnk7TWVX-7KW94FqK4Syy6YSZ8PZEF7EcIp3M,2621
27
+ maleo_enums-0.0.1.dist-info/METADATA,sha256=nbsBVX52nNdF9hlo9FkbHyn7qMwmNQ5-HzOVy78YX38,1279
28
+ maleo_enums-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
29
+ maleo_enums-0.0.1.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
30
+ maleo_enums-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,57 @@
1
+ # Proprietary Software License
2
+
3
+ **Copyright (c) 2025 Agra Bima Yuda / Nexmedis**
4
+
5
+ ## License Grant
6
+
7
+ This software and associated documentation files (the "Software") are proprietary and confidential to Agra Bima Yuda and/or Nexmedis ("Licensor"). All rights reserved.
8
+
9
+ ## Restrictions
10
+
11
+ **NO PERMISSION** is granted to any person to:
12
+
13
+ 1. **Use** the Software for any purpose without explicit written permission from the Licensor
14
+ 2. **Copy, modify, merge, publish, distribute, sublicense, or sell** copies of the Software
15
+ 3. **Reverse engineer, decompile, or disassemble** the Software
16
+ 4. **Create derivative works** based upon the Software
17
+ 5. **Remove or alter** any proprietary notices, labels, or marks on the Software
18
+
19
+ ## Permitted Use
20
+
21
+ Use of this Software is permitted only under the following conditions:
22
+
23
+ 1. **Authorized Users**: Only individuals or entities explicitly authorized by the Licensor in writing
24
+ 2. **Internal Use Only**: The Software may only be used for internal business purposes of the authorized entity
25
+ 3. **No Redistribution**: The Software may not be shared, distributed, or made available to any third party
26
+
27
+ ## Ownership
28
+
29
+ The Software is and remains the exclusive property of the Licensor. This license does not grant any ownership rights in the Software.
30
+
31
+ ## Confidentiality
32
+
33
+ The Software contains proprietary and confidential information. Recipients agree to:
34
+
35
+ 1. Maintain the confidentiality of the Software
36
+ 2. Use the same degree of care to protect the Software as they use for their own confidential information, but no less than reasonable care
37
+ 3. Not disclose the Software to any third party without prior written consent
38
+
39
+ ## Termination
40
+
41
+ This license is effective until terminated. The Licensor may terminate this license at any time without notice. Upon termination, all rights granted herein cease immediately, and the recipient must destroy all copies of the Software.
42
+
43
+ ## Disclaimer of Warranty
44
+
45
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
46
+
47
+ ## Limitation of Liability
48
+
49
+ IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
50
+
51
+ ## Governing Law
52
+
53
+ This license shall be governed by and construed in accordance with the laws of Indonesia, without regard to its conflict of law provisions.
54
+
55
+ ---
56
+
57
+ For licensing inquiries, contact: agra@nexmedis.com
@@ -0,0 +1 @@
1
+ maleo