Skip to content

Commit

Permalink
211205 - V.0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kees Smit committed Dec 5, 2021
1 parent c977371 commit 927c4ce
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
__pycache__/
*.pyc
*.swp
*.log
dist/
*.egg-info
build/
venv/
.vscode/
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ the LEGO Mindstorms EV3.

## Requirements

1. Pixy2 for LEGO Mindstorms EV3 camera.
1. Pixy2 or Pixy2.1 for LEGO Mindstorms EV3 camera.
2. LEGO Mindstorms EV3 brick, running the ev3dev operatingsystem.

## Installation
Expand All @@ -21,9 +21,10 @@ An extensive tutorial on how to use pixycamev3 can be found on

## Useful links

* Charmed Labs [homepage](https://pixycam.com)
* Charmed Labs [homepage](https://www.charmedlabs.com)
* Pixy2 for LEGO Mindstorms EV3 [wiki](https://docs.pixycam.com/wiki/doku.php?id=wiki:v2:lego_wiki)
* pixycamEV3 [tutorial](https://docs.pixycam.com/wiki/doku.php?id=wiki:v2:lego_wiki)
* pixycamev3 [tutorial](https://docs.pixycam.com/wiki/doku.php?id=wiki:v2:python)
* pixycamev3 [source](https://github.com/charmedlabs/pixycamev3)
* ev3dev [homepage](https://ev3dev.org)


Expand Down
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@
version='0.1.0',
author='Kees Smit',
author_email='[email protected]',
description='Python API for Pixy2 on LEGO Mindstorms EV3',
description='Python3 API for Pixy2 on LEGO Mindstorms EV3',
long_description=long_description,
packages=['pixycamev3'],
url='http://pypi.python.org/pypi/pixycamev3/',
url='https://github.com/charmedlabs/pixycamev3',
project_urls = {
'Documentation': 'https://docs.pixycam.com/wiki/doku.php?id=wiki:v2:python',
'Bug tracker': 'https://github.com/charmedlabs/pixycamev3/issues',
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPLv3",
"Operating System :: ev3dev2",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Development Status :: 4 - Beta"
],
)

0 comments on commit 927c4ce

Please sign in to comment.