cy-rule-engine 0.1.0__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,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: cy_rule_engine
3
+ Version: 0.1.0
4
+ Summary: Axonius CY Rule Engine placeholder package
5
+ Home-page: https://github.com/axonius/cy_rule_engine
6
+ Author: Axonius Publisher
7
+ Author-email: package-publisher@axonius.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ This is a placeholder package for CY Rule Engine.
@@ -0,0 +1,3 @@
1
+ # Axonius CY Rule Engine
2
+
3
+ This is a placeholder package for CY Rule Engine.
@@ -0,0 +1,3 @@
1
+ from .core import placeholder_function
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,3 @@
1
+ def placeholder_function():
2
+ """A placeholder function that does nothing."""
3
+ return "This is a placeholder function for CY Rule Engine."
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: cy_rule_engine
3
+ Version: 0.1.0
4
+ Summary: Axonius CY Rule Engine placeholder package
5
+ Home-page: https://github.com/axonius/cy_rule_engine
6
+ Author: Axonius Publisher
7
+ Author-email: package-publisher@axonius.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ This is a placeholder package for CY Rule Engine.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.cfg
3
+ setup.py
4
+ cy_rule_engine/__init__.py
5
+ cy_rule_engine/core.py
6
+ cy_rule_engine.egg-info/PKG-INFO
7
+ cy_rule_engine.egg-info/SOURCES.txt
8
+ cy_rule_engine.egg-info/dependency_links.txt
9
+ cy_rule_engine.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ cy_rule_engine
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="cy_rule_engine",
5
+ version="0.1.0",
6
+ author="Axonius Publisher",
7
+ author_email="package-publisher@axonius.com",
8
+ description="Axonius CY Rule Engine placeholder package",
9
+ long_description="This is a placeholder package for CY Rule Engine.",
10
+ long_description_content_type="text/markdown",
11
+ url="https://github.com/axonius/cy_rule_engine",
12
+ packages=find_packages(),
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ python_requires=">=3.6",
19
+ )