firecrawl 0.0.19__tar.gz → 0.0.20__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.

Potentially problematic release.


This version of firecrawl might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 0.0.19
3
+ Version: 0.0.20
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -30,7 +30,7 @@ Classifier: Topic :: Software Development :: Libraries
30
30
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
31
  Classifier: Topic :: Text Processing
32
32
  Classifier: Topic :: Text Processing :: Indexing
33
- Requires-Python: >=3.7
33
+ Requires-Python: >=3.8
34
34
  Description-Content-Type: text/markdown
35
35
  Requires-Dist: requests
36
36
 
@@ -13,7 +13,7 @@ import os
13
13
 
14
14
  from .firecrawl import FirecrawlApp
15
15
 
16
- __version__ = "0.0.19"
16
+ __version__ = "0.0.20"
17
17
 
18
18
  # Define the logger for the Firecrawl project
19
19
  logger: logging.Logger = logging.getLogger("firecrawl")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 0.0.19
3
+ Version: 0.0.20
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -30,7 +30,7 @@ Classifier: Topic :: Software Development :: Libraries
30
30
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
31
  Classifier: Topic :: Text Processing
32
32
  Classifier: Topic :: Text Processing :: Indexing
33
- Requires-Python: >=3.7
33
+ Requires-Python: >=3.8
34
34
  Description-Content-Type: text/markdown
35
35
  Requires-Dist: requests
36
36
 
@@ -16,9 +16,7 @@ def get_version():
16
16
  raise RuntimeError("Unable to find version string.")
17
17
 
18
18
 
19
-
20
19
  setup(
21
- # This name is modified by build_and_publish.sh to firecrawl or firecrawl-py
22
20
  name="firecrawl",
23
21
  version=get_version(),
24
22
  url="https://github.com/mendableai/firecrawl",
@@ -31,9 +29,9 @@ setup(
31
29
  install_requires=[
32
30
  'requests',
33
31
  'pytest',
34
- 'python-dotenv'
32
+ 'python-dotenv',
35
33
  ],
36
- python_requires=">=3.7",
34
+ python_requires=">=3.8",
37
35
  classifiers=[
38
36
  "Development Status :: 5 - Production/Stable",
39
37
  "Environment :: Web Environment",
@@ -62,4 +60,4 @@ setup(
62
60
  "Tracker": "https://github.com/mendableai/firecrawl/issues",
63
61
  },
64
62
  license="GNU General Public License v3 (GPLv3)",
65
- )
63
+ )
File without changes
File without changes
File without changes