Common platform for developing Open Source Ecology (OSE) workbenches.
Project description
OSE Workbench Platform
A platform for developing CAD workbenches for Open Source Ecology (OSE).
OSE defines a "CAD workbench" as a set of tools in CAD software to design and make a particular machine.
Each CAD workbench OSE develops for one of it's machines has certain common devlopment-time or "dev-time" needs and dependencies.
For example, open source CAD software like FreeCAD, running unit tests, making documentation, and generating code to streamline workbench development.
Rather than duplicate the approaches to each of these needs, ose-workbench-platform
abstracts those needs into a common platform so they aren't the concern of individual OSE workbench maintainers.
Each workbench maintainer doesn't need to know or care about the particular versions and libraries we use to solve those needs, nor the particular configuration.
Having a common platform for OSE workbench development also makes it easier for developers to readily switch between workbenches by providing a common toolset.
ose-workbench-platform
provides a command-line interface (CLI), via the osewb
command, containing commands for common dev-time tasks such as running FreeCAD, running all tests, making documentation, generating a new workbench, and even generating code for common tasks and patterns.
Open Source CAD Software
FreeCAD is OSE's open-source CAD software of choice.
Currently, OSE chooses to use FreeCAD 16, or "legacy FreeCAD".
It's expected and encouraged that all OSE contributors use the same version of FreeCAD to maximize collaboration.
To run a built-in version of FreeCAD 16 within ose-workbench-platform
, run:
osewb run
Unit Tests
The test framework we choose to use is Pytest.
To run the entire unit-test suite of a workbench, within the root of a OSE workbench repository, run:
osewb test
Documentation
For building documentation we use Sphinx.
To build the documentation of a workbench, within the root of a OSE workbench repository, run:
osewb docs
Generating New Workbenches
Navigate to where you want to generate a directory for your new workbench. Then run:
osewb generate <name>
Where name
is the name of the machine for your new workbench.
For example,
osewb generate tractor
Will generate a new directory called ose-tractor-workbench
with the basic structure and files needed for the workbench.
Generating Code
Within the root of a workbench repository, run the make
command.
For example,
osewb make command AddMotor
Will generate a new AddMotor
command class.
Developing Locally
Run the following command from the root of the repository:
pip install -e .
See "Editable Installs" on the pip docs for additional information.
This will give you access to the osewb
command locally for testing any changes to the source code.
Deploying to PyPi
From the root of repository:
-
python setup.py sdist
-
twine upload dist/*
pip install twine
(if not already installed)
You'll be prompted for your PyPi username and password.
Enter your username:
Enter your password:
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
File details
Details for the file ose-workbench-platform-0.1.0a3.tar.gz
.
File metadata
- Download URL: ose-workbench-platform-0.1.0a3.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34731436fef156264840785ee8b4a195cdad3d730b67c6cd1e043eae6985fe03 |
|
MD5 | f56380419d56e6721635f67837c37b08 |
|
BLAKE2b-256 | cc9d30963846dd534fc9506f54731af37366a0c2446f88c35718fbeee430459c |