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.
@@ -1,10 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: productcategorizationapi
3
- Version: 1.6
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.6
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.6",
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
- author_name="Samo",
27
- author_email="info@productcategorizationapi.com",
28
-
29
- # Classifiers help categorize your project.
30
- # For a complete list of classifiers, visit:
31
- # https://pypi.org/classifiers
32
- # This is OPTIONAL
33
- classifiers=[
34
- "License :: OSI Approved :: MIT License",
35
- "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",
36
- "Programming Language :: Python :: 3 :: Only"
37
- ],
38
-
39
- keywords="product categorization, classification, categorization",
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
  )