From 4bc414a9ae86bde53e3817587e65bef83ee0bdf0 Mon Sep 17 00:00:00 2001 From: DataGreed Date: Tue, 5 Apr 2022 18:06:51 +0100 Subject: [PATCH] fixed module importing --- exporters/__init__.py | 2 ++ parsers/__init__.py | 2 ++ setup.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/exporters/__init__.py b/exporters/__init__.py index e69de29..ba662bb 100644 --- a/exporters/__init__.py +++ b/exporters/__init__.py @@ -0,0 +1,2 @@ +import midi +__all__ = ['midi'] \ No newline at end of file diff --git a/parsers/__init__.py b/parsers/__init__.py index e69de29..77b5c8f 100644 --- a/parsers/__init__.py +++ b/parsers/__init__.py @@ -0,0 +1,2 @@ +import arps, chords, constants, patterns, project +__all__ = ['arps', 'chords', 'constants', 'patterns', 'project'] \ No newline at end of file diff --git a/setup.py b/setup.py index 318d43e..7317a69 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ requirements = fh.read() setup( name = 'polyendtracker-midi-export', - version = '0.2.3', + version = '0.2.4', author = 'Alexey Strelkov', author_email = 'datagreed@gmail.com', license = 'MIT License',