-
Notifications
You must be signed in to change notification settings - Fork 63
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
Example showing the use of pyproject.toml file #21
Comments
Of course you can replace setup.py with pyproject.toml in a namespace package. This would have to include the following: [build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["example_pkg"]
namespaces = true
[project]
[...] |
Not necessarily replace, but also augment (as in only putting |
How about re-framing this request as add |
Though it sounds like it's going to be solved by https://github.com/pypa/sample-namespace-packages/pull/22/files#diff-4f37d08353943ae764c63527530410dc0c1dd92d51af3994532f4a584a73a5e5 |
Yes, I'm in favour of that.
Although this doesn't transfer the metadata to |
Can namespace packages be created with pyproject.toml files only? I couldn't find any references to these type of packages.
Thank you
The text was updated successfully, but these errors were encountered: