-
Notifications
You must be signed in to change notification settings - Fork 550
Description
Please Describe The Problem To Be Solved
Allow the Flet repository to be installable using pip, this will allow users or developers to have the latest unstable version from the repository with latest features or bug fixes before a proper stable release version is made and uploaded to pypi
.
(Optional): Suggest A Solution
1- In order to make it so the repository can be installed with pip it needs to have a setup.py
file either on the root of the repo, on the subdirectory which will be used when installing with the #egg=
option or both places. This file will cover the dependencies and other things needed for building the wheel used by pip.
2- Another solution would be to make it so we can get a wheel from the CI or any other tool used after each commit or PR is approved and merged, then we would just use a fixed URL to get the latest built wheel but this might have issues if the latest build failed for any reason and we could end up with not the latest wheel but a previous built one.
Note: Documentation for devs running from the repository directly should also be created.