Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Copy LICENSE into build directory
run: cp ../LICENSE .
- name: Create source and wheel dist
run: |
python -m build
Expand Down Expand Up @@ -339,6 +341,8 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Copy LICENSE into build directory
run: cp ../LICENSE .
- name: Create source and wheel dist
run: |
python -m build
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build
- name: Copy LICENSE into build directory
run: cp ../LICENSE .
- name: Create source and wheel dist
# (2024-12-11, s-heppner)
# The PyPI Action expects the dist files in a toplevel `/dist` directory,
Expand Down Expand Up @@ -54,6 +56,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build
- name: Copy LICENSE into build directory
run: cp ../LICENSE .
- name: Create source and wheel dist
# (2024-12-11, s-heppner)
# The PyPI Action expects the dist files in a toplevel `/dist` directory,
Expand Down
21 changes: 0 additions & 21 deletions compliance_tool/LICENSE

This file was deleted.

4 changes: 2 additions & 2 deletions compliance_tool/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ authors = [
{ name = "The AAS Compliance Tool authors", email = "admins@iat.rwth-aachen.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
Expand Down
4 changes: 2 additions & 2 deletions sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ authors = [
{ name = "The Eclipse BaSyx Authors", email = "admins@iat.rwth-aachen.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
Expand Down
1 change: 1 addition & 0 deletions server/docker/discovery/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ RUN apk update && \
pip install uwsgi && \
apk del git bash

COPY ./LICENSE /LICENSE
COPY ./sdk /sdk
COPY ./server/app /server/app
COPY ./server/pyproject.toml /server/pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion server/docker/registry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apk update && \
pip install uwsgi && \
apk del git bash


COPY ./LICENSE /LICENSE
COPY ./sdk /sdk
COPY ./server/app /server/app
COPY ./server/pyproject.toml /server/pyproject.toml
Expand Down
1 change: 1 addition & 0 deletions server/docker/repository/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apk update && \

# Copy only the files we need to run the container
# The argumentation for this is to keep the containers as slim as possible.
COPY ./LICENSE /LICENSE
COPY ./sdk /sdk
COPY ./server/app /server/app
COPY ./server/pyproject.toml /server/pyproject.toml
Expand Down
4 changes: 2 additions & 2 deletions server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ authors = [
{ name = "The Eclipse BaSyx Authors", email = "admins@iat.rwth-aachen.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable"
]
Expand Down