-
-
Notifications
You must be signed in to change notification settings - Fork 533
Extract dependencies from setup.py #496
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
Comments
i belive this is a duplicate of #13 |
I don't understand - tox already install requirements listed in your |
@The-Compiler the requirement extraction happens at package install time, not package test time it could help a lot to extract test_requires/extra_requires and reuse them |
This is really a dupe, so let's take the discussion there. Closing. Duplicate of #13 |
@obestwalter @RonnyPfannschmidt you're correct, my pain is that after initial env creation stuff updated in setup.py does not trigger a reinstall (only if you change stuff in deps), but that's another issue. |
So now one has the option to add
requirements.txt
via the -r option. However, for the package there already exists asetup.py
that contains the dependencies. It would be nice to not need to have maintain dependencies in two files and instead load them directly from the requirements.txt via '-ssetup.py'. What do you guys think?The text was updated successfully, but these errors were encountered: