forked from reingart/pyafipws
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip install dependencies in setup.py #105
Labels
Comments
reingart
added
enhancement
New feature or request
good first issue
Good for newcomers
labels
Mar 19, 2023
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Mar 27, 2023
4 tasks
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Mar 27, 2023
Signed-off-by: HanslettTheDev <[email protected]>
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Mar 27, 2023
Signed-off-by: HanslettTheDev <[email protected]>
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Mar 27, 2023
Signed-off-by: HanslettTheDev <[email protected]>
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Apr 11, 2023
Signed-off-by: HanslettTheDev <[email protected]>
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Apr 11, 2023
Signed-off-by: HanslettTheDev <[email protected]>
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Jun 10, 2023
Signed-off-by: HanslettTheDev <[email protected]>
This was referenced Jun 16, 2023
Closed
HanslettTheDev
added a commit
to HanslettTheDev/pyafipws
that referenced
this issue
Jun 17, 2023
Signed-off-by: HanslettTheDev <[email protected]> fix: improved the get_dependencies function to grab all dependency modules Signed-off-by: HanslettTheDev <[email protected]> fix: improved the get_dependencies function to grab all dependency modules; commit signed Signed-off-by: HanslettTheDev <[email protected]> fix: fixed the issue with pip not detecting links Signed-off-by: HanslettTheDev <[email protected]> fix: removed the python version number in the requirements.txt file fix: fixed the error when replacing the links with the module name The overall errors fixed was to prevent the setup.py build from failing Signed-off-by: HanslettTheDev <[email protected]> feat: get all dependencies from the requirements.txt file to be used by the setup.py build process
This was referenced Jun 17, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dependencies should be declared in setup.py so this package could be installed doing
In the future, this package will be published in PyPI to just run
pip install pyafipws
More info: reingart#66
install_requires
should be added to setup function (probably readingrequirements.txt
)Documentation:
https://python-packaging.readthedocs.io/en/latest/dependencies.html
Example to try for
setup.py
:Warnings:
The text was updated successfully, but these errors were encountered: