Added requirements as explicit dependencies in setup.py

This commit is contained in:
squidfunk 2017-03-30 23:34:21 +02:00 committed by Martin Donath
parent a00c8b1fdb
commit e4f4e630ce
3 changed files with 16 additions and 13 deletions

View File

@ -24,21 +24,16 @@ MAINTAINER Martin Donath <martin.donath@squidfunk.com>
# Set build directory
WORKDIR /tmp
# Install dependencies
COPY requirements.txt .
RUN \
pip install -r requirements.txt && \
rm requirements.txt
# Copy files necessary for build
COPY material material
COPY MANIFEST.in MANIFEST.in
COPY package.json package.json
COPY setup.py setup.py
COPY material .
COPY MANIFEST.in .
COPY package.json .
COPY requirements.txt .
COPY setup.py .
# Perform build and cleanup artifacts
RUN \
python setup.py install && \
python setup.py install 2>/dev/null && \
rm -rf /tmp/*
# Set working directory

View File

@ -19,5 +19,5 @@
# IN THE SOFTWARE.
mkdocs>=0.16
pygments
pymdown-extensions>=1.2
pygments>=2.2
pymdown-extensions>=2.0

View File

@ -25,6 +25,13 @@ from setuptools import setup, find_packages
with open("package.json") as data:
package = json.load(data)
# Load list of dependencies
with open("requirements.txt") as data:
install_requires = [
line for line in data.read().split("\n")
if line and not line.startswith("#")
]
# Package description
setup(
name = package["name"],
@ -37,6 +44,7 @@ setup(
keywords = package["keywords"],
packages = find_packages(),
include_package_data = True,
install_requires = install_requires,
entry_points = {
"mkdocs.themes": [
"material = material",