Skip to content

Commit cc7d129

Browse files
authored
Fix license issues (#38)
We copy the approach of Scipy to licensing our own code and the bundled code.
1 parent cc686ff commit cc7d129

9 files changed

+134
-37
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
MANIFEST
12
.DS_Store
23
var
34
build

CMakeLists.txt

+5-6
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ else()
2424
endif()
2525

2626
file(GLOB SOURCES "src/*.cpp")
27-
file(GLOB SOURCES2 "extern/HepMC3/src/*.cc")
27+
file(GLOB HEPMC3_SOURCES "extern/HepMC3/src/*.cc")
2828

29-
pybind11_add_module(_core MODULE ${SOURCES} ${SOURCES2})
29+
# pyhepmc falls under Section 5 "Combined Libraries" of the LGPL-v3. Since we
30+
# satisfy a) and b), we do not need to compile the code into a separate library.
31+
pybind11_add_module(_core MODULE ${SOURCES} ${HEPMC3_SOURCES})
3032
target_include_directories(_core PRIVATE extern/cpp-member-accessor/include)
3133
target_include_directories(_core PRIVATE extern/mp11/include)
3234
target_include_directories(_core PRIVATE extern/HepMC3/include)
@@ -36,8 +38,5 @@ if(MSVC)
3638
target_compile_options(_core PRIVATE /bigobj)
3739
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
3840
else()
39-
target_compile_options(_core PRIVATE -fvisibility=hidden -Wall
40-
-Wno-self-assign-overloaded)
41+
target_compile_options(_core PRIVATE -Wall -Wno-self-assign-overloaded)
4142
endif()
42-
set_target_properties(_core PROPERTIES VISIBILITY_INLINES_HIDDEN ON)
43-
target_compile_definitions(_core PRIVATE HEPMC3_HEPEVT_NMXHEP=10000)

LICENSE

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
HepMC3 code in path src/HepMC3 is distributed under GPL-v3, see
2-
src/HepMC3/LICENCE. The rest of the code is covered by the following license:
3-
41
BSD 3-Clause License
52

63
Copyright (c) 2018, Hans Dembinski

LICENSES_bundled

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
The pyhepmc repository and source distributions bundle a number of libraries that
2+
are compatibly licensed. We list these here.
3+
4+
Name: HepMC3
5+
Files: extern/HepMC3/*
6+
License: LGPL-v3
7+
For details, see extern/HepMC3/LICENCE and extern/HepMC3/COPYING.
8+
9+
Name: pybind11
10+
Files: extern/pybind11/*
11+
License:
12+
Copyright (c) 2016 Wenzel Jakob <[email protected]>, All rights reserved.
13+
14+
Redistribution and use in source and binary forms, with or without
15+
modification, are permitted provided that the following conditions are met:
16+
17+
1. Redistributions of source code must retain the above copyright notice, this
18+
list of conditions and the following disclaimer.
19+
20+
2. Redistributions in binary form must reproduce the above copyright notice,
21+
this list of conditions and the following disclaimer in the documentation
22+
and/or other materials provided with the distribution.
23+
24+
3. Neither the name of the copyright holder nor the names of its contributors
25+
may be used to endorse or promote products derived from this software
26+
without specific prior written permission.
27+
28+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
29+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
32+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
34+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
35+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
36+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38+
39+
Name: cpp-member-accessor
40+
Files: extern/cpp-member-accessor/*
41+
License: MIT
42+
For details, see extern/cpp-member-accessor/LICENSE
43+
44+
Name: Boost Mp11
45+
Files: extern/mp11/*
46+
License:
47+
Boost Software License - Version 1.0 - August 17th, 2003
48+
49+
Permission is hereby granted, free of charge, to any person or organization
50+
obtaining a copy of the software and accompanying documentation covered by
51+
this license (the "Software") to use, reproduce, display, distribute,
52+
execute, and transmit the Software, and to prepare derivative works of the
53+
Software, and to permit third-parties to whom the Software is furnished to
54+
do so, all subject to the following:
55+
56+
The copyright notices in the Software and this entire statement, including
57+
the above license grant, this restriction and the following disclaimer,
58+
must be included in all copies of the Software, in whole or in part, and
59+
all derivative works of the Software, unless such copies or derivative
60+
works are solely in the form of machine-executable object code generated by
61+
a source language processor.
62+
63+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
64+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
66+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
67+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
68+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
69+
DEALINGS IN THE SOFTWARE.

MANIFEST.in

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
include src/*.cpp
2-
include src/*.hpp
3-
include src/pyhepmc/*.py
41
recursive-include extern/HepMC3/include *.h
52
recursive-include extern/HepMC3/src *.cc
3+
include extern/HepMC3/LICENCE
4+
include extern/HepMC3/COPYING
65
recursive-include extern/pybind11/include *.h
7-
recursive-include extern/cpp-member-accessor/include *.hpp
8-
recursive-include extern/mp11/include *.hpp
96
include extern/pybind11/CMakeLists.txt
107
include extern/pybind11/tools/*.cmake
11-
include extern/pybind11/LICENSE
12-
include extern/HepMC3/LICENCE
13-
include extern/cpp-member-accessor/LICENSE
8+
recursive-include extern/cpp-member-accessor/include *.hpp
9+
recursive-include extern/mp11/include *.hpp
10+
include src/*.cpp
11+
include src/*.hpp
12+
include src/pyhepmc/*.py
1413
include cmake_ext.py
1514
include CMakeLists.txt
1615
include LICENSE
1716
include pyproject.toml
1817
include README.rst
1918
include setup.cfg
2019
include setup.py
20+
include setup_utils.py

README.rst

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pyhepmc
22
=======
33

4-
A Pythonic wrapper for the HepMC3 C++ library.
4+
A Pythonic wrapper for the `HepMC3 C++ library <http://hepmc.web.cern.ch/hepmc>`_.
55

66
.. image:: https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg
77
:target: https://scikit-hep.org
@@ -27,15 +27,7 @@ However, building from source is also easy. External software is not required. J
2727

2828
**pyhepmc is Pythonic and Jupyter notebook-friendly**
2929

30-
pyhepmc is a hand-crafted mapping of C++ code to Python, see documentation for details. Python idioms are supported where appropriate. The classes are designed to render well in Jupyter notebooks.
31-
32-
- C++ methods which act like properties are represented as properties,
33-
e.g. ``GenParticle::set_status`` and ``GenParticle::status`` are mapped to a single
34-
``GenParticle.status`` field in Python.
35-
- Tuples and lists are implicitly convertible to ``FourVector`` and ``ToolInfo`` objects.
36-
- Vectors of objects on the C++ side are mapped to Python lists.
37-
- ``Reader`` and ``Writer`` classes support the context manager protocol. ``Reader`` objects can be iterated over.
38-
- A convenient ``open`` function is provided for reading and writing HepMC files.
30+
pyhepmc is a hand-crafted mapping of C++ code to Python, see documentation for details. Python idioms are supported where appropriate. The classes are designed to render well in Jupyter notebooks. IO is simplified. Events can be visualized in Jupyter notebooks.
3931

4032
**pyhepmc supports visualizations powered by graphviz**
4133

@@ -45,7 +37,7 @@ pyhepmc can optionally visualize events, using the mature `graphviz <https://gra
4537

4638
**pyhepmc is actively maintained**
4739

48-
pyhepmc is part of the Scikit-HEP project, which aims to provide all tools needed by particle physicists to do data analysis in Python. There is also official collaboration with the HepMC3 project.
40+
pyhepmc is part of the Scikit-HEP project, which aims to provide all tools needed by particle physicists to do data analysis in Python. It is developed in close collaboration with the HepMC3 project.
4941

5042
**pyhepmc is thoroughly unit tested**
5143

@@ -54,9 +46,9 @@ We have 100% coverage for the Python API.
5446
Documentation
5547
-------------
5648

57-
pyhepmc mirrors the C++ interface of the `HepMC3 library, which is documented here <http://hepmc.web.cern.ch/hepmc>`_. The documentation is mostly copied from HepMC3 and available as Python docstrings, so you can use Python's ``help()`` browser to learn about the API. Alternatively, you can consult our online reference generated from these docstrings.
49+
pyhepmc largely mirrors the C++ interface of the `HepMC3 library, which is documented here <http://hepmc.web.cern.ch/hepmc>`_. Parts of the documentation have been copied from HepMC3. Documentation is available as Python docstrings, so you can use Python's ``help()`` browser to learn about the API. Alternatively, you can consult `the online reference generated from these docstrings <https://scikit-hep.org/pyhepmc/>`_ which includes some examples.
5850

5951
License
6052
-------
6153

62-
pyhepmc is covered by the BSD 3-clause license, see the ``LICENSE`` file for details. This license only applies to the pyhepmc code. The connected external libraries HepMC3 and pybind11 are covered by other licenses, as described in their respective ``LICENSE`` files.
54+
The pyhepmc code is covered by the BSD 3-clause license, but its main functionality comes from bundled software which is released under different licenses. The HepMC3 library is licensed under LGPL-v3 and bundles other software which is released under different licenses. See the files ``LICENSE`` and ``LICENSE_bundled`` in the source directory for details.

setup.cfg

+7-5
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22
name = pyhepmc
33
author = Hans Dembinski
44
author_email = [email protected]
5-
description = Pythonic interface to the HepMC3 C++ library.
5+
description = Pythonic interface to the HepMC3 C++ library licensed under LGPL-v3.
66
long_description = file: README.rst
77
long_description_content_type = text/x-rst
88
url = https://github.com/scikit-hep/pyhepmc
99
project_urls =
1010
Documentation = https://scikit-hep.org/pyhepmc/
11-
license_files = LICENSE, extern/pybind11/LICENSE, extern/HepMC3/LICENSE
11+
license = BSD 3-Clause
12+
license_files =
13+
LICENSE
1214
classifiers =
13-
Programming Language :: Python :: 3
15+
Development Status :: 5 - Production
1416
License :: OSI Approved :: BSD License
15-
Operating System :: OS Independent
16-
Development Status :: 4 - Beta
17+
Programming Language :: Python :: 3
1718
Operating System :: MacOS
1819
Operating System :: POSIX
1920
Operating System :: Unix
21+
Operating System :: Windows
2022
Topic :: Scientific/Engineering
2123
Intended Audience :: Developers
2224

setup.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
1+
import sys
12
from pathlib import Path
23
from setuptools import setup
3-
import sys
4+
from distutils.command.sdist import sdist
45

56
cdir = Path(__file__).parent.absolute()
67

78
sys.path.append(str(cdir))
89
from cmake_ext import CMakeExtension, CMakeBuild # noqa: E402
10+
from setup_utils import merge_license_files # noqa: E402
11+
12+
13+
class sdist_mod(sdist):
14+
def run(self):
15+
with merge_license_files():
16+
sdist.run(self)
17+
918

1019
setup(
1120
zip_safe=False,
1221
use_scm_version=True,
1322
setup_requires=["setuptools_scm"],
1423
ext_modules=[CMakeExtension("pyhepmc._core")],
15-
cmdclass={"build_ext": CMakeBuild},
24+
cmdclass={"build_ext": CMakeBuild, "sdist": sdist_mod},
1625
)

setup_utils.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
from contextlib import contextmanager
2+
3+
4+
@contextmanager
5+
def merge_license_files():
6+
"""
7+
Merge LICENSE.txt and LICENSES_bundled.txt for sdist creation.
8+
9+
This follows the approach of Scipy and is to keep LICENSE in repo as an
10+
exact BSD 3-clause, to make GitHub state correctly how pyhepmc is licensed.
11+
"""
12+
13+
l1 = "LICENSE"
14+
l2 = "LICENSES_bundled"
15+
16+
with open(l1, "r") as f:
17+
content1 = f.read()
18+
19+
with open(l2, "r") as f:
20+
content2 = f.read()
21+
22+
with open(l1, "w") as f:
23+
f.write(content1 + "\n\n" + content2)
24+
25+
yield
26+
27+
with open(l1, "w") as f:
28+
f.write(content1)

0 commit comments

Comments
 (0)