apsniper0673-constants 0.1.3__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,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: apsniper0673_constants
3
+ Version: 0.1.3
4
+ Summary: My constants for APSniper0673
5
+ Author: apsniper0673
6
+ Requires-Python: >=3.8
@@ -0,0 +1 @@
1
+ # constants
@@ -0,0 +1,19 @@
1
+ [project]
2
+ name = "apsniper0673_constants"
3
+ version = "0.1.3"
4
+ description = "My constants for APSniper0673"
5
+ authors = [
6
+ { name = "apsniper0673" }
7
+ ]
8
+ requires-python = ">=3.8"
9
+ dependencies = [
10
+ # "pandas",
11
+ # "numpy",
12
+ ]
13
+
14
+ [build-system]
15
+ requires = ["setuptools>=64", "wheel"]
16
+ build-backend = "setuptools.build_meta"
17
+
18
+ [tool.setuptools.packages.find]
19
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: apsniper0673_constants
3
+ Version: 0.1.3
4
+ Summary: My constants for APSniper0673
5
+ Author: apsniper0673
6
+ Requires-Python: >=3.8
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/apsniper0673_constants.egg-info/PKG-INFO
4
+ src/apsniper0673_constants.egg-info/SOURCES.txt
5
+ src/apsniper0673_constants.egg-info/dependency_links.txt
6
+ src/apsniper0673_constants.egg-info/top_level.txt
7
+ src/myconstants/__init__.py
8
+ src/myconstants/policies.py
@@ -0,0 +1,7 @@
1
+ from enum import Enum
2
+
3
+ class BudgetExceedPolicy(Enum):
4
+ POLICY_NO_LIMIT = 'NO_LIMIT'
5
+ POLICY_STOP_ENTRY = 'STOP_ENTRY'
6
+ POLICY_FIFO = 'FIFO'
7
+ POLICY_WORST = 'WORST'