productcategorizationapi 1.6__tar.gz → 1.7__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.
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/PKG-INFO +3 -1
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/productcategorizationapi.egg-info/PKG-INFO +3 -1
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/setup.py +44 -39
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/README.md +0 -0
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/productcategorizationapi/__init__.py +0 -0
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/productcategorizationapi.egg-info/SOURCES.txt +0 -0
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/productcategorizationapi.egg-info/dependency_links.txt +0 -0
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/productcategorizationapi.egg-info/top_level.txt +0 -0
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/setup.cfg +0 -0
- {productcategorizationapi-1.6 → productcategorizationapi-1.7}/test/__init__.py +0 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: productcategorizationapi
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7
|
|
4
4
|
Summary: product categorization API
|
|
5
5
|
Home-page: https://www.productcategorization.com
|
|
6
6
|
Author-email: info@productcategorizationapi.com
|
|
7
7
|
License: UNKNOWN
|
|
8
|
+
Project-URL: Homepage, https://www.productcategorization.com
|
|
9
|
+
Project-URL: AI Tools Blocklist, https://www.aitoolsblocklist.com
|
|
8
10
|
Description:
|
|
9
11
|
# ProductCategorization.com Python Client
|
|
10
12
|
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: productcategorizationapi
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7
|
|
4
4
|
Summary: product categorization API
|
|
5
5
|
Home-page: https://www.productcategorization.com
|
|
6
6
|
Author-email: info@productcategorizationapi.com
|
|
7
7
|
License: UNKNOWN
|
|
8
|
+
Project-URL: Homepage, https://www.productcategorization.com
|
|
9
|
+
Project-URL: AI Tools Blocklist, https://www.aitoolsblocklist.com
|
|
8
10
|
Description:
|
|
9
11
|
# ProductCategorization.com Python Client
|
|
10
12
|
|
|
@@ -1,40 +1,45 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
from os.path import abspath, dirname, join
|
|
3
|
-
|
|
4
|
-
# Fetches the content from README.md
|
|
5
|
-
# This will be used for the "long_description" field.
|
|
6
|
-
README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
|
|
7
|
-
|
|
8
|
-
setup(
|
|
9
|
-
# The name of project.
|
|
10
|
-
# pip install productcategorizationapi
|
|
11
|
-
name="productcategorizationapi",
|
|
12
|
-
|
|
13
|
-
# The version of your project.
|
|
14
|
-
version="1.
|
|
15
|
-
|
|
16
|
-
packages=find_packages(exclude="tests"),
|
|
17
|
-
|
|
18
|
-
description="product categorization API",
|
|
19
|
-
|
|
20
|
-
long_description=README_MD,
|
|
21
|
-
|
|
22
|
-
long_description_content_type="text/markdown",
|
|
23
|
-
|
|
24
|
-
url="https://www.productcategorization.com",
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
from os.path import abspath, dirname, join
|
|
3
|
+
|
|
4
|
+
# Fetches the content from README.md
|
|
5
|
+
# This will be used for the "long_description" field.
|
|
6
|
+
README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
|
|
7
|
+
|
|
8
|
+
setup(
|
|
9
|
+
# The name of project.
|
|
10
|
+
# pip install productcategorizationapi
|
|
11
|
+
name="productcategorizationapi",
|
|
12
|
+
|
|
13
|
+
# The version of your project.
|
|
14
|
+
version="1.7",
|
|
15
|
+
|
|
16
|
+
packages=find_packages(exclude="tests"),
|
|
17
|
+
|
|
18
|
+
description="product categorization API",
|
|
19
|
+
|
|
20
|
+
long_description=README_MD,
|
|
21
|
+
|
|
22
|
+
long_description_content_type="text/markdown",
|
|
23
|
+
|
|
24
|
+
url="https://www.productcategorization.com",
|
|
25
|
+
|
|
26
|
+
project_urls={
|
|
27
|
+
"Homepage": "https://www.productcategorization.com",
|
|
28
|
+
"AI Tools Blocklist": "https://www.aitoolsblocklist.com",
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
author_name="Samo",
|
|
32
|
+
author_email="info@productcategorizationapi.com",
|
|
33
|
+
|
|
34
|
+
# Classifiers help categorize your project.
|
|
35
|
+
# For a complete list of classifiers, visit:
|
|
36
|
+
# https://pypi.org/classifiers
|
|
37
|
+
# This is OPTIONAL
|
|
38
|
+
classifiers=[
|
|
39
|
+
"License :: OSI Approved :: MIT License",
|
|
40
|
+
"Environment :: GPU :: NVIDIA CUDA :: 11.3","Environment :: GPU :: NVIDIA CUDA :: 11.0", "Environment :: GPU :: NVIDIA CUDA", "Environment :: GPU :: NVIDIA CUDA :: 11.2","Environment :: GPU :: NVIDIA CUDA :: 10.1",
|
|
41
|
+
"Programming Language :: Python :: 3 :: Only"
|
|
42
|
+
],
|
|
43
|
+
|
|
44
|
+
keywords="product categorization, classification, categorization",
|
|
40
45
|
)
|
|
File without changes
|
{productcategorizationapi-1.6 → productcategorizationapi-1.7}/productcategorizationapi/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|