Added distutils as dependency.
- Should I add it to setup.py? Also testing it.
This commit is contained in:
parent
d06c6526b9
commit
993fd389cf
2
setup.py
2
setup.py
|
|
@ -20,7 +20,7 @@ setup(name='kibot',
|
|||
# Packages are marked using __init__.py
|
||||
packages=find_packages(),
|
||||
scripts=['src/kibot', 'src/kiplot'],
|
||||
install_requires=['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests'],
|
||||
install_requires=['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests', 'distutils'],
|
||||
classifiers=['Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ LABEL Description="KiCad with KiBot and other automation scripts"
|
|||
|
||||
RUN sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list && \
|
||||
apt-get update && \
|
||||
apt-get -y install -t buster-backports make wget curl rar bzip2 librsvg2-bin python3-pip unzip && \
|
||||
apt-get -y install -t buster-backports make wget curl rar bzip2 librsvg2-bin && \
|
||||
apt-get -y install python3-pip python3-distutils unzip && \
|
||||
apt-get -y install --no-install-recommends imagemagick && \
|
||||
curl -s https://api.github.com/repos/INTI-CMNB/KiAuto/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \
|
||||
curl -s https://api.github.com/repos/INTI-CMNB/KiBoM/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | wget -i - && \
|
||||
|
|
|
|||
Loading…
Reference in New Issue