sampleproject
sampleproject copied to clipboard
A sample project that exists for PyPUG's "Tutorial on Packaging and Distributing Projects"
Added `CHANGELOG.md` to the template and an associated entry in `project.urls`. Also updated the label for the link to the issue tracker to be consistent with what is given on...
`__main__.py` is frequently used by packages and modules (like the standard _`turtledemo`_) to enable things like: ``` python -m some_module ``` I would like to propose a `__main__.py` example inside...
pypa/sampleproject and [Python Packaging User Guide's "Packaging Python Projects" page](https://packaging.python.org/tutorials/packaging-projects/?highlight=test#creating-the-package-files) suggest the unit test folder be named `tests`. But by default, [all files matching the pattern **test**/test*.py](https://packaging.python.org/guides/using-manifest-in/?highlight=test#how-files-are-included-in-an-sdist), not **tests**/test*.py, are...
The sampleproject missing a sample for the documentation. Please add it. New users don't know where to put the `docs` directory ....
It seems like if one is starting a new project using the sample project as the "first commit," then the new project also has to be licensed using MIT (since...
When GitHub Actions runs the `test.yml` workflow file a user warning is raised. One for each platform version combination in the matrix. ...
https://packaging.python.org/en/latest/tutorials/packaging-projects/ https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#writing-pyproject-toml I couldn't find information about compatibility with platforms, such as whether it is suitable for Linux or Windows. The only mention of determining the system platform is in...
This is my code while verifying error **Error:** ERROR - Error verifying the message: Malformed public key **My Code** `import logging from hsslms import HSS_Priv, LMS_ALGORITHM_TYPE, LMOTS_ALGORITHM_TYPE def main(): #...
I'd like to see a version of this for a simple python CLI application (__main__.py with supporting python files), that when pip-installed can be run as `sample-app arg arg...` And...
``` 94: locs = find_peaks(y[i:])[0] 95: pks = y[locs] ``` **find_peaks** returns peak indexes relative to the beginning of _input_ array, in your case `y[i:]`, so to get peak indexes...