A template for SDyPy projects.
Project description
SDyPy Template Project
A template to help you start a new project in the SDyPy ecosystem.
Using the template
To use this template, you have multiple options. The following two will cover most use cases:
You can use GitHub’s templating functionality. A new repository will be created on GitHub for your project. Use this option if your project does not yet have an online repository.
Click the “Use this template” button on the project template Github repository (see image below).
Simply select and confirm a name for your new repository, and a copy of this template will be created for you.
You can now clone your new repository onto your local machine. If your new repository is located at https://github.com/<your_name>/<my_new_project>, for example:
$ git clone https://github.com/<your_name>/<my_new_project>A folder named <my_new_project> will be created on your machine. It is already setup with a connection to your new GitHub repository, and you can begin developing your package!
If you already have a repository for your project, located for example at https://github.com/<your_name>/<my_existing_project>, you can use our template by cloning in onto you local machine. This downloads the files into a local folder, with a connection with the online repository already set up. Do this by running :
$ git clone https://github.com/sdypy/sdypy_template_projectOur template files will be downloaded into the sdypy_template_project folder.
You can now either copy these files into you existing local project folder, or connect the cloned repository in the sdypy_template_project folder with your existing online repository :
$ git remote rm origin $ git remote add origin https://github.com/ladisk/<my_existing_project>.git
You are now setup to begin working on your project.
To begin development, install the required packages with :
$ python -m pip install -r requirements.dev.txt
Now you can replace the core source code modules in sdypy_template_project/ with your code.
Remember to also replace the poject name (sdypy_template_project) with your own project name in the following files:
pyproject.toml
README.rst
CONTRIBUTING.rst
the “sdypy_template_project” directory name
Consider adding unit-tests for your project by modifying the files, found in tests/. The provided test file structure is setup to work with pytest.
To also use the sphinx documentation, modify files in docs/source, or remove the docs/ folder and quickstart a fresh documentation version using the sphinx-quickstart command (see Sphinx - Getting started for more info).
File structure
The project code is structured as follows:
- setup.py
the Python setup script, used to package the project
- requirements.txt
a list of packages, required to use this project
- requirements.dev.txt
a list of packages, required to develop this project
- README.rst
the main projecdt description / documentation file
- CONTRIBUTING.rst
a document containing information for potential contrubutors (developers) of the package
- License
the project License
- .travis.yml
contains the set of instructions to run wit the TravisCI continuous integration service after the file repository has been updated
- .gitignore
defines the files in the project directory to be excluded from version control
- tests/
contains project unit-tests
- sdypy_template_project/
contains the core project source code, separated into meaningful sub-modules
- examples/
scripts, notebooks with examples to showcase the project
- docs/
the documentation source and built files
(For a more complex and custumuzable project structure, see the Cookiecutter project.)
Building the documentation
By setting up ReadTheDocs, your project documentation can automatically be built and puclished as a publicly available website.
To test your documentation locally, run the following (starting from the main project directory) :
$ cd docs
$ make clean
$ make html
Your documentation files will be built inside the docs/build/html folder.
Publishing the project
You can build your project and publish it to the Python Package Index with the following basic steps:
Build you project source code :
$ python -m build
The built project can be tested locally by installing the resulting .whl file, found in the dist/ folder in a new virtual environemtn:
$ python -m virtualenv venv
$ venv/Scripts/activate
$ python -m pip install <sdypy_template_project-#>.whl
(replace <sdypy_template_project-#> above with the actual .whl file name).
Upload the distribution files from dist/ to PyPI :
$ python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
(--repository-url https://test.pypi.org/legacy/ uploads the package to the test PyPI for testing. To publish you package to the main PyPI repository, simply ommit this option from the above command.)
For more information on the publishng process, see this simpel Python packaging tutorial.
After that, the sdypy_template_project will be available on PyPI and can be installed with pip.
$ pip install sdypy_template_project
After installing sdypy_template_project you can use it like any other Python module.
Here is a simple example with the current example code:
import sdypy_template_project as iep
import numpy as np
import matplotlib.pyplot as plt
video = np.load('examples/speckle.npy', mmap_mode='r')
results = iep.get_displacements(video, point=[5, 5], roi_size=[7, 7])
plt.figure()
plt.plot(results[0], label='x [px]')
plt.plot(results[1], label='y [px]')
plt.legend()
plt.show()
You can also run this basic example by running the following command in the project base direcotry:
$ python -m examples.basic_example
The Read the Docs page provides the project documentation.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file opensd2025_track4-0.1.2.tar.gz.
File metadata
- Download URL: opensd2025_track4-0.1.2.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0063dd2acf7318c576b357e5a8113fe9927cddedeec8f56a3a329b876e21f2b
|
|
| MD5 |
02c823ec1e83a9d20f5719ed8746b962
|
|
| BLAKE2b-256 |
0695a48706286ac59b527b6436c356dd07be26d4d0bc1f601003a9dbe200bdcc
|
File details
Details for the file opensd2025_track4-0.1.2-py3-none-any.whl.
File metadata
- Download URL: opensd2025_track4-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61be01454996b58884b10d952105bda67b4d1bf92a56013270507e81e176081d
|
|
| MD5 |
43e92520143ac4c565c7e459183aacbc
|
|
| BLAKE2b-256 |
436e39f9821534c67c4bc768ba7d06ff922ffae38790148702c469e16d16471c
|