Cleanup
parent
5151cbad04
commit
22ad351161
2
parse.py
2
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)
|
||||
|
|
4
setup.py
4
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',
|
||||
|
|
Loading…
Reference in New Issue