master
Aaron Goldstein 2020-03-04 00:38:19 -08:00
parent 5151cbad04
commit 22ad351161
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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',