-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rik Starmans
committed
Jun 29, 2021
1 parent
b138ff6
commit 8c66c43
Showing
5 changed files
with
149 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='rotorbalancer', | ||
package_dir={'': 'src'}, | ||
packages=find_packages(where='src'), | ||
version='0.0.1', | ||
description='Implementation of a rotorbalancer on a NANO33BlE.', | ||
author='Rik Starmans', | ||
license='GPLv3', | ||
project_urls={ | ||
'Blog': 'https://hackaday.io/project/21933-open-hardware-fast-high-resolution-laser', | ||
'Main page': 'https://www.hexastorm.com', | ||
'Source': 'https://github.com/hstarmans/rotorbalancer', | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import calc, main, tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.