diff --git a/parse.py b/parse.py index ba315f1..6ab9883 100644 --- a/parse.py +++ b/parse.py @@ -4,7 +4,7 @@ import re import json import copy -def parse(input, output, json_format, **kwargs): +def parse(input, json_format, **kwargs): fullPath = input blah = olefile.OleFileIO(fullPath) diff --git a/setup.py b/setup.py index b041e21..478867a 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages with open("README.md", "r") as fh: long_description = fh.read() @@ -6,7 +6,7 @@ with open("README.md", "r") as fh: setup( name='Altium-Schematic-Parser', version='0.0.0', - packages=[''], + packages=find_packages(), url='https://github.com/a3ng7n/Altium-Schematic-Parser', license='see LICENSE', author='Aaron Goldstein',