Skip to content

Commit 9abf5e4

Browse files
committed
Moving ev3dev.py out of ev3dev folder
This makes the module flat-organized (see #10). This also adds a setup.py file so that the module may be installed with easy_install or uploaded to pypi.
1 parent 9c41ac1 commit 9abf5e4

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
__pycache__
22
*.pyc
33
*.swp
4+
dist
5+
*.egg-info
File renamed without changes.

ev3dev/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='python-ev3dev',
5+
version='0.0.1',
6+
description='Python language bindings for ev3dev',
7+
author='Ralph Hempel',
8+
license='MIT',
9+
url='https://github.com/rhempel/ev3dev-lang-python',
10+
include_package_data=True,
11+
packages=['ev3dev']
12+
)
13+

0 commit comments

Comments
 (0)