Skip to content

Commit 1d9f588

Browse files
committed
feat: Add MIT License and update recipe configuration for improved compatibility
1 parent 60d35e4 commit 1d9f588

3 files changed

Lines changed: 42 additions & 18 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 ssg-aero
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

recipies/conda_build_config.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
python:
22
# - 3.8
3-
- 3.9
3+
# - 3.9
44
- 3.10
55
- 3.11
66
- 3.12
7-
# cxx_compiler_version: [linux]
8-
# - <=9.3 [linux]

recipies/recipe.yaml

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package:
99
version: ${{ version }}
1010

1111
source:
12-
path: .
12+
path: ..
1313

1414
build:
1515
number: 0
@@ -32,9 +32,13 @@ build:
3232

3333
requirements:
3434
build:
35-
- ${{ compiler('cxx') }}
35+
- ${{ "clangxx" if linux else compiler('cxx') }}
36+
- ${{"clang-tools" if linux}}
37+
- ${{"llvm-tools" if linux}}
38+
# - ${{ compiler('cxx') }}
3639
# - clangxx
3740
# - clang-tools
41+
# - llvm-tools
3842
- ${{"vs2022_win-64" if win}}
3943
- cmake >=3.30
4044
- ninja
@@ -58,17 +62,18 @@ tests:
5862
# - mod3d.Geom
5963
# - mod3d.TopoDS
6064

61-
# about:
62-
# homepage: https://github.com/yourusername/Mod3D
63-
# license: MIT
64-
# license_file: LICENSE
65-
# summary: Python bindings for OpenCASCADE geometry and topology via pybind11
66-
# description: |
67-
# Mod3D provides lightweight Python bindings for Open Cascade Technology (OCCT)
68-
# using pybind11. It exposes geometry primitives (gp), curves, surfaces, topology
69-
# (TopoDS), and various modeling algorithms for CAD/CAM workflows.
70-
# documentation: https://github.com/yourusername/Mod3D#readme
65+
about:
66+
homepage: https://github.com/ssg-aero/Mod3D
67+
license: MIT
68+
license_file: LICENSE
69+
summary: Python bindings for OpenCASCADE geometry and topology via pybind11
70+
description: |
71+
Mod3D provides lightweight Python bindings for Open Cascade Technology (OCCT)
72+
using pybind11. It exposes geometry primitives (gp), curves, surfaces, topology
73+
(TopoDS), and various modeling algorithms for CAD/CAM workflows.
74+
documentation: https://github.com/ssg-aero/Mod3D#readme
7175

72-
# extra:
73-
# recipe-maintainers:
74-
# - sebas
76+
extra:
77+
recipe-maintainers:
78+
- szebos
79+
- ssg-aero

0 commit comments

Comments
 (0)