-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
pyproject_config.rst: Remove beta tag for (optional) dependencies #3632
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
base: main
Are you sure you want to change the base?
Conversation
Remove the beta tag for dependencies and optional dependencies in the "Configuring setuptools using pyproject.toml files" documentation.
I think we can postpone this for a while since we haven't received a lot of feedback yet about using So far, the only feedback we received is of people trying to use |
@abravalheri I was looking into packaging / Data Files Support in |
Hi @EwoutH, in general, the opportunity of moving to On the other hand, simple projects should not really need to resort to these configurations: as long as the devs use a well thought directory structure maintaining the relevant files inside the package directory and use a proper |
a85759c
to
93ce5a0
Compare
I am currently using "file = requirements.txt" in pyproject.toml and I was considering using it in a lot more projects in our group, but I have put that on hold because of the beta warning. I don't want to risk making all our projects depend on something that later gets removed. (We have projects which currently open requirements.txt files and reads them, programmatically, inside of setup.py, and I wanted to replace this with just linking requirements.txt in pyproject.toml.) Not sure if this is the right place to provide feedback (probably not - I apologize); I found this PR while trying to figure out exactly how "beta" this feature is and if it was likely to be kep. |
I'm using the following block in my [tool.setuptools.packages.find]
where = ["."]
include = ["simple_python_package*"]
exclude = ["simple_python_package.tests*", "simple_python_package.scripts*"]
namespaces = false Is this the correct usage? If so, is there any kind of schedule for stabilization? |
Remove the beta tag for dependencies and optional dependencies in the Configuring setuptools using pyproject.toml files documentation.