Skip to content

Commit

Permalink
Merge pull request #10 from FLEXible-FL/flextrees-add-license
Browse files Browse the repository at this point in the history
Added LICENSE.
  • Loading branch information
AlArgente authored Mar 7, 2024
2 parents 656aae9 + ad4369a commit 23c100a
Show file tree
Hide file tree
Showing 20 changed files with 1,490 additions and 362 deletions.
2 changes: 1 addition & 1 deletion .trunk/config/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
select = ["B", "D3", "D4", "E", "F"]

# Never enforce `E501` (line length violations). This should be handled by formatters.
ignore = ["E501", "D417", "D401", "B905"]
ignore = ["E501", "D417", "D401", "B905", "D409", "D301", "E402"]
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions flextrees/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
"""
Copyright (C) 2024 Instituto Andaluz Interuniversitario en Ciencia de Datos e Inteligencia Computacional (DaSCI)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
Expand Down
16 changes: 16 additions & 0 deletions flextrees/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
"""
Copyright (C) 2024 Instituto Andaluz Interuniversitario en Ciencia de Datos e Inteligencia Computacional (DaSCI)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from __future__ import division
from __future__ import print_function
from __future__ import absolute_import
Expand Down
Loading

0 comments on commit 23c100a

Please sign in to comment.