Skip to content

Commit b33378e

Browse files
committed
ifc2ca major update - todo: update readme file
1 parent d42e19f commit b33378e

20 files changed

Lines changed: 2688 additions & 2245 deletions

src/ifc2ca/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Use Miniconda base image
2+
FROM continuumio/miniconda3:4.10.3
3+
4+
# Update Conda, install necessary libraries, and then install Mamba
5+
RUN conda update -n base -c defaults conda && \
6+
conda install libarchive -c conda-forge -y && \
7+
conda install mamba -c conda-forge -y
8+
9+
# Install Code_Aster and Python dependencies with Conda
10+
RUN mamba install -c conda-forge code-aster python=3.10 -y

src/ifc2ca/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Ifc2CA - IFC Code_Aster utility
2+
# Copyright (C) 2020, 2021, 2023, 2024 Ioannis P. Christovasilis <ipc@aethereng.com>
3+
#
4+
# This file is part of Ifc2CA.
5+
#
6+
# Ifc2CA is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU Lesser General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# Ifc2CA is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
# GNU Lesser General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Lesser General Public License
17+
# along with Ifc2CA. If not, see <http://www.gnu.org/licenses/>.
18+
19+
from .ifc2ca import Ifc2CA

src/ifc2ca/_deprecated/ca2ifc.py

Lines changed: 525 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)