From 22ad351161ebafa4312645c0ceee28200e102bd8 Mon Sep 17 00:00:00 2001 From: Aaron Goldstein Date: Wed, 4 Mar 2020 00:38:19 -0800 Subject: [PATCH] Cleanup --- parse.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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',