Skip to content

Commit

Permalink
Merge pull request #1 from troykelly/troy-refactor
Browse files Browse the repository at this point in the history
Working now
  • Loading branch information
troykelly authored Oct 1, 2018
2 parents 31190d4 + 92db600 commit 1106721
Show file tree
Hide file tree
Showing 11 changed files with 912 additions and 397 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,6 @@ venv.bak/
.mypy_cache/
.dmypy.json
dmypy.json

# Testing Data
test/
362 changes: 0 additions & 362 deletions dynalite/Dynalite.py

This file was deleted.

1 change: 0 additions & 1 deletion dynalite/__init__.py

This file was deleted.

6 changes: 6 additions & 0 deletions dynalite_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""Dynalite Communications"""
from .dynalite import Dynalite
from .dynet import Dynet
from .dynet import DynetPacket
from .const import OpcodeType
from .inbound import DynetInbound
4 changes: 4 additions & 0 deletions dynalite_lib/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"""Version of package."""
VERSION = (0, 1, 12)

__version__ = '.'.join(map(str, VERSION))
Loading

0 comments on commit 1106721

Please sign in to comment.