vectocore 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.
File without changes
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.1
2
+ Name: vectocore
3
+ Version: 0.1.0
4
+ Summary: A simple vector core library
5
+ Home-page: https://www.vectocore.com/
6
+ Author: hd-ai-lab
7
+ Author-email: store_admin@hyundaifuturenet.co.kr
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
+ License-File: LICENSE
14
+
15
+ # Vectocore
16
+
17
+ Vectocore is a simple Python package for working with vector cores.
18
+
19
+ ## Installation
20
+
21
+ You can install the package using pip:
@@ -0,0 +1,7 @@
1
+ # Vectocore
2
+
3
+ Vectocore is a simple Python package for working with vector cores.
4
+
5
+ ## Installation
6
+
7
+ You can install the package using pip:
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,20 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="vectocore", # 패키지 이름
5
+ version="0.1.0", # 패키지 버전
6
+ author="hd-ai-lab", # 작성자 이름
7
+ author_email="store_admin@hyundaifuturenet.co.kr", # 작성자 이메일
8
+ description="A simple vector core library", # 패키지 설명
9
+ long_description=open("README.md").read(), # 패키지 설명 (README.md)
10
+ long_description_content_type="text/markdown", # 설명 파일 형식
11
+ url="https://www.vectocore.com/", # 프로젝트 URL
12
+ packages=find_packages(), # 자동으로 패키지 찾기
13
+ classifiers=[ # 패키지 분류 정보
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ install_requires=["requests"],
19
+ python_requires=">=3.6", # 필요한 파이썬 버전
20
+ )
@@ -0,0 +1,3 @@
1
+ from .vectocore import Vectocore
2
+
3
+ __version__ = "0.0.13"
@@ -0,0 +1,11 @@
1
+ import os
2
+ import json
3
+ import requests
4
+
5
+
6
+ class Vectocore:
7
+ def __init__(self, tenantKey=""):
8
+ self.tenant_key = os.environ.get("VECTOCORE_TENANT_KEY", tenantKey)
9
+
10
+ def test(self, input: str) -> str:
11
+ return "here is {} comes".format(input)
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.1
2
+ Name: vectocore
3
+ Version: 0.1.0
4
+ Summary: A simple vector core library
5
+ Home-page: https://www.vectocore.com/
6
+ Author: hd-ai-lab
7
+ Author-email: store_admin@hyundaifuturenet.co.kr
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
+ License-File: LICENSE
14
+
15
+ # Vectocore
16
+
17
+ Vectocore is a simple Python package for working with vector cores.
18
+
19
+ ## Installation
20
+
21
+ You can install the package using pip:
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ vectocore/__init__.py
6
+ vectocore/vectocore.py
7
+ vectocore.egg-info/PKG-INFO
8
+ vectocore.egg-info/SOURCES.txt
9
+ vectocore.egg-info/dependency_links.txt
10
+ vectocore.egg-info/requires.txt
11
+ vectocore.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ requests
@@ -0,0 +1 @@
1
+ vectocore