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.
- vectocore-0.1.0/LICENSE +0 -0
- vectocore-0.1.0/PKG-INFO +21 -0
- vectocore-0.1.0/README.md +7 -0
- vectocore-0.1.0/pyproject.toml +3 -0
- vectocore-0.1.0/setup.cfg +4 -0
- vectocore-0.1.0/setup.py +20 -0
- vectocore-0.1.0/vectocore/__init__.py +3 -0
- vectocore-0.1.0/vectocore/vectocore.py +11 -0
- vectocore-0.1.0/vectocore.egg-info/PKG-INFO +21 -0
- vectocore-0.1.0/vectocore.egg-info/SOURCES.txt +11 -0
- vectocore-0.1.0/vectocore.egg-info/dependency_links.txt +1 -0
- vectocore-0.1.0/vectocore.egg-info/requires.txt +1 -0
- vectocore-0.1.0/vectocore.egg-info/top_level.txt +1 -0
vectocore-0.1.0/LICENSE
ADDED
|
File without changes
|
vectocore-0.1.0/PKG-INFO
ADDED
|
@@ -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:
|
vectocore-0.1.0/setup.py
ADDED
|
@@ -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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
requests
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vectocore
|