coreed-cli 1.0.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,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: coreed-cli
3
+ Version: 1.0.0
4
+ Summary: Push to Coreed - Deploy AI models and agents to Coreed on 0G Chain
5
+ Author: Coreed Team
6
+ Author-email: team@coreed.ai
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Requires-Python: >=3.8
16
+ Requires-Dist: web3>=6.0.0
17
+ Requires-Dist: python-dotenv>=1.0.0
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: coreed-cli
3
+ Version: 1.0.0
4
+ Summary: Push to Coreed - Deploy AI models and agents to Coreed on 0G Chain
5
+ Author: Coreed Team
6
+ Author-email: team@coreed.ai
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Requires-Python: >=3.8
16
+ Requires-Dist: web3>=6.0.0
17
+ Requires-Dist: python-dotenv>=1.0.0
18
+ Dynamic: author
19
+ Dynamic: author-email
20
+ Dynamic: classifier
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ coreed_cli.egg-info/PKG-INFO
3
+ coreed_cli.egg-info/SOURCES.txt
4
+ coreed_cli.egg-info/dependency_links.txt
5
+ coreed_cli.egg-info/entry_points.txt
6
+ coreed_cli.egg-info/requires.txt
7
+ coreed_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ push-to-coreed = cli.coreed_cli:main
@@ -0,0 +1,2 @@
1
+ python-dotenv>=1.0.0
2
+ web3>=6.0.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Setup script for Coreed CLI
4
+
5
+ Install with: pip install -e .
6
+ """
7
+
8
+ from setuptools import setup, find_packages
9
+
10
+ with open("requirements.txt", "r") as f:
11
+ requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
12
+
13
+ setup(
14
+ name="coreed-cli",
15
+ version="1.0.0",
16
+ description="Push to Coreed - Deploy AI models and agents to Coreed on 0G Chain",
17
+ author="Coreed Team",
18
+ author_email="team@coreed.ai",
19
+ packages=find_packages(),
20
+ python_requires=">=3.8",
21
+ install_requires=requirements,
22
+ entry_points={
23
+ "console_scripts": [
24
+ "push-to-coreed = cli.coreed_cli:main",
25
+ ],
26
+ },
27
+ classifiers=[
28
+ "Development Status :: 4 - Beta",
29
+ "Intended Audience :: Developers",
30
+ "License :: OSI Approved :: MIT License",
31
+ "Programming Language :: Python :: 3",
32
+ "Programming Language :: Python :: 3.8",
33
+ "Programming Language :: Python :: 3.9",
34
+ "Programming Language :: Python :: 3.10",
35
+ "Programming Language :: Python :: 3.11",
36
+ ],
37
+ )