You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package currently has both a pyproject.toml file and a setup.py file in place. The former contains the majority of the package specification; the latter, content for converting a single .pyx file to a Python module in the package.
According to the Cython docs, using setup.py is the recommended method. Evaluate the possibility of using just or the other but not both.
Note that the source distribution and binary wheels presently contain files such as documentation, example code, GH actions, etc. Is this as intended or can we remove those?
The text was updated successfully, but these errors were encountered:
The package currently has both a
pyproject.toml
file and asetup.py
file in place. The former contains the majority of the package specification; the latter, content for converting a single.pyx
file to a Python module in the package.According to the Cython docs, using
setup.py
is the recommended method. Evaluate the possibility of using just or the other but not both.Note that the source distribution and binary wheels presently contain files such as documentation, example code, GH actions, etc. Is this as intended or can we remove those?
The text was updated successfully, but these errors were encountered: