Skip to content

Commit 29fbe38

Browse files
authored
Header cleanup (#1732)
* Header cleanup * Update copyright
1 parent 1c0e747 commit 29fbe38

File tree

8 files changed

+6
-78
lines changed

8 files changed

+6
-78
lines changed

LICENSE

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
CadQuery
2-
Copyright (C) 2015 Parametric Products Intellectual Holdings, LLC
32

43
This library is free software; you can redistribute it and/or
54
modify it under the terms of the Apache Public License, v 2.0
@@ -193,7 +192,7 @@ modify it under the terms of the Apache Public License, v 2.0
193192
same "printed page" as the copyright notice for easier
194193
identification within third-party archives.
195194

196-
Copyright [yyyy] [Parametric Products Intellectual Holdings, LLC]
195+
Copyright CadQuery Development Team
197196

198197
Licensed under the Apache License, Version 2.0 (the "License");
199198
you may not use this file except in compliance with the License.

cadquery/contrib/__init__.py

-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +0,0 @@
1-
"""
2-
Copyright (C) 2011-2015 Parametric Products Intellectual Holdings, LLC
3-
4-
This file is part of CadQuery.
5-
6-
CadQuery is free software; you can redistribute it and/or
7-
modify it under the terms of the GNU Lesser General Public
8-
License as published by the Free Software Foundation; either
9-
version 2.1 of the License, or (at your option) any later version.
10-
11-
CadQuery 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 GNU
14-
Lesser General Public License for more details.
15-
16-
You should have received a copy of the GNU Lesser General Public
17-
License along with this library; If not, see <http://www.gnu.org/licenses/>
18-
"""

cadquery/cq.py

+2-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
1-
"""
2-
Copyright (C) 2011-2015 Parametric Products Intellectual Holdings, LLC
3-
4-
This file is part of CadQuery.
5-
6-
CadQuery is free software; you can redistribute it and/or
7-
modify it under the terms of the GNU Lesser General Public
8-
License as published by the Free Software Foundation; either
9-
version 2.1 of the License, or (at your option) any later version.
10-
11-
CadQuery 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 GNU
14-
Lesser General Public License for more details.
15-
16-
You should have received a copy of the GNU Lesser General Public
17-
License along with this library; If not, see <http://www.gnu.org/licenses/>
18-
"""
1+
# Copyright (c) CadQuery Development Team.
2+
# Distributed under the terms of the Apache 2 License.
193

204
import math
215
from copy import copy

cadquery/occ_impl/exporters/json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"metadata" :
1010
{
1111
"formatVersion" : 3,
12-
"generatedBy" : "ParametricParts",
12+
"generatedBy" : "cadquery",
1313
"vertices" : %(nVertices)d,
1414
"faces" : %(nFaces)d,
1515
"normals" : 0,

cadquery/plugins/__init__.py

-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +0,0 @@
1-
"""
2-
CadQuery
3-
Copyright (C) 2015 Parametric Products Intellectual Holdings, LLC
4-
5-
This library is free software; you can redistribute it and/or
6-
modify it under the terms of the GNU Lesser General Public
7-
License as published by the Free Software Foundation; either
8-
version 2.1 of the License, or (at your option) any later version.
9-
10-
This library is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
Lesser General Public License for more details.
14-
15-
You should have received a copy of the GNU Lesser General Public
16-
License along with this library; if not, write to the Free Software
17-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18-
"""

cadquery/selectors.py

-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
"""
2-
Copyright (C) 2011-2015 Parametric Products Intellectual Holdings, LLC
3-
4-
This file is part of CadQuery.
5-
6-
CadQuery is free software; you can redistribute it and/or
7-
modify it under the terms of the GNU Lesser General Public
8-
License as published by the Free Software Foundation; either
9-
version 2.1 of the License, or (at your option) any later version.
10-
11-
CadQuery 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 GNU
14-
Lesser General Public License for more details.
15-
16-
You should have received a copy of the GNU Lesser General Public
17-
License along with this library; If not, see <http://www.gnu.org/licenses/>
18-
"""
19-
201
from abc import abstractmethod, ABC
212
import math
223
from .occ_impl.geom import Vector

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
# General information about the project.
6464
project = "CadQuery"
65-
copyright = "Parametric Products Intellectual Holdings LLC, All Rights Reserved"
65+
copyright = "CadQuery Development Team"
6666

6767
# The version info for the project you're documenting, acts as replacement for
6868
# |version| and |release|, also used in various other places throughout the

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2015 Parametric Products Intellectual Holdings, LLC
1+
# Copyright (c) CadQuery Development Team.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)