firecrawl icon indicating copy to clipboard operation
firecrawl copied to clipboard

Adds support for `pip install firecrawl`

Open nickscamara opened this issue 1 year ago • 3 comments

Currently to install firecrawl via pip one needs to do pip install firecrawl-py.

It seems like pip install firecrawl would be better, so I have added support for that too. Currently it introduces a bash script to perform the publish that way we ensure we publish to the 2 different packages. In the future I think we should transition to pip install firecrawl - following this https://github.com/simonw/pypi-rename

Notes:

  1. To use this you need to first change the version in init.py and then chmod +x build_and_publish.shand then ./build_and_publish.sh
  2. Update your .pypirc to contain the pypip credentials as follows:

[distutils] index-servers = pypi pypi-test

[pypi] repository = https://upload.pypi.org/legacy/ username = token password =

[pypi-test] repository = https://test.pypi.org/legacy/ username = token password =

nickscamara avatar Jul 01 '24 23:07 nickscamara

Todo:

  • [ ] Figure out if this might remove the dependency graph stuff from this repo.

nickscamara avatar Jul 01 '24 23:07 nickscamara

@rafaelsideguide we might need to make changes to the publish ci in order to publish this

Todo:

Adjust the CI

nickscamara avatar Jul 03 '24 17:07 nickscamara

ci changes on #344

rafaelsideguide avatar Jul 05 '24 19:07 rafaelsideguide