No project description provided
Project description
RE-Lab_template
Template repository for Python projects
Get started
Simply click on the green Use this template
button on the left of the Clone or download
button.
The detailed instructions to create a new repository from this template can be found here.
To Do
These steps should be taken after creating a project from this template:
-
Choose a license Open the LICENSE file and and fill in the year and name. If you don't want to use the MIT license you can find other licenses at choosealicense.com.
-
Edit setup.py Fill in the right name and add a short description. Please read the comments above the corresponding variables.
Distributing initial version via PyPI (pip)
A more in-depth tutorial can be found on the official documentation.
Everytime you upload a new version to PyPi you have to increase the version number in the setup.py file beforehand!
-
If you want to share the project with users you might want them to be able to easily install the software. Here are the necessary steps: The pip installation will automatically add all python-files and all files specified in package_data and data_files in setup() arguments in the setup.py, as well as the README and pyproject.toml. If you need to include other files create a new file 'MANIFEST.in' in the project root folder and refer to the official guidelines on how to add these files.
-
Make sure you have the latest version of PyPA's build installed: (Linux) python3 -m pip install --upgrade build (Windows) py -m pip install --upgrade build
-
From the project root directory run: (Linux) python3 -m build (Windows) py -m build
There should now be a 'dist' directory with two files in it.
-
Install Twine (Linux) python3 -m pip install --upgrade twine (Windows) py -m pip install --upgrade twine
-
Upload (you still need to be in the project root folder) (Linux) python3 -m twine upload dist/* (Windows) py -m twine upload dist/* Enter the credentials. There is a RE-Lab account for PyPI.
Done. You can now install the package pip install package-name
src folder
This folder is where you should place the code of your package (package name to be edited in 'setup.py' under name)
You can install it locally for developing with
python setup.py install
More details for packaging are available on https://packaging.python.org
Docs
To build the docs simply go to the docs
folder
cd docs
Install the requirements
pip install -r docs_requirements.txt
and run
(Linux) make html (Windows) make.bat html
The output will then be located in docs/_build/html
and can be opened with your favorite browser
Code linting
In this template, 3 possible linters are proposed:
- flake8 only sends warnings and error about linting (PEP8)
- pylint sends warnings and error about linting (PEP8) and also allows warning about imports order
- black sends warning but can also fix the files for you
You can perfectly use the 3 of them or subset, at your preference. Don't forget to edit .travis.yml
if you want to deactivate the automatic testing of some linters!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file RE-Lab_template-0.0.1.tar.gz
.
File metadata
- Download URL: RE-Lab_template-0.0.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 797aa7de7136b4e8114f6b88debb60f04d4ce8f9c9f03cbc98665834635ccc17 |
|
MD5 | f0c0f5a78bcbcd40bd96aaaa7b371232 |
|
BLAKE2b-256 | cf1f524a329f22037f8d43a9560f27cfc88074ea9ec9831422ce75723a6329fb |
File details
Details for the file RE_Lab_template-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: RE_Lab_template-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44f582475dbc6fe620568416b5fe38a81737190c4e0ae450c04fc28501040949 |
|
MD5 | a2549df7e97922d0c356aff6691bb591 |
|
BLAKE2b-256 | 723ada4450562ebdc13f914ecb467b925e90ef984dabdeecfcd0e075b556a478 |