weco 0.0.1__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.
- weco-0.0.1/PKG-INFO +22 -0
- weco-0.0.1/README.md +9 -0
- weco-0.0.1/pyproject.toml +18 -0
- weco-0.0.1/setup.cfg +4 -0
- weco-0.0.1/setup.py +20 -0
- weco-0.0.1/weco/__init__.py +0 -0
- weco-0.0.1/weco.egg-info/PKG-INFO +22 -0
- weco-0.0.1/weco.egg-info/SOURCES.txt +8 -0
- weco-0.0.1/weco.egg-info/dependency_links.txt +1 -0
- weco-0.0.1/weco.egg-info/top_level.txt +1 -0
weco-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: weco
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python package for using Weco's service
|
|
5
|
+
Home-page: https://github.com/wecoai/weco-python
|
|
6
|
+
Author: Yuxiang Wu
|
|
7
|
+
Author-email: Yuxiang Wu <yuxiang@weco.ai>
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Weco Package
|
|
15
|
+
|
|
16
|
+
This is a Python package for using Weco AI service.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install wec o
|
|
22
|
+
|
weco-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "weco"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Yuxiang Wu", email = "yuxiang@weco.ai" },
|
|
10
|
+
]
|
|
11
|
+
description = "Python package for using Weco's service"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
weco-0.0.1/setup.cfg
ADDED
weco-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='weco',
|
|
5
|
+
version='0.0.1',
|
|
6
|
+
description='Weco AI Python package',
|
|
7
|
+
long_description=open('README.md').read(),
|
|
8
|
+
long_description_content_type='text/markdown',
|
|
9
|
+
author='Yuxiang Wu',
|
|
10
|
+
author_email='yuxiang@weco.ai',
|
|
11
|
+
url='https://github.com/wecoai/weco-python',
|
|
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.8',
|
|
19
|
+
)
|
|
20
|
+
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: weco
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python package for using Weco's service
|
|
5
|
+
Home-page: https://github.com/wecoai/weco-python
|
|
6
|
+
Author: Yuxiang Wu
|
|
7
|
+
Author-email: Yuxiang Wu <yuxiang@weco.ai>
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Weco Package
|
|
15
|
+
|
|
16
|
+
This is a Python package for using Weco AI service.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install wec o
|
|
22
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
weco
|