-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #369 from SCM-NV/license
MAINT: Ensure that libint and hdf5 licenses are only distributed in the wheels
- Loading branch information
Showing
7 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Licenses for various third-party binaries distributed in the Nano-QMFlows wheels. | ||
|
||
Note that no such files are present in source-only Nano-QMFlows distributions. | ||
Note that aforementioned binaries are absent from source-only Nano-QMFlows distributions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,13 +171,14 @@ def get_paths() -> "tuple[list[str], list[str]]": | |
version=version['__version__'], | ||
description='Derivative coupling calculation', | ||
license='Apache-2.0', | ||
license_files=["LICENSE*.txt"], | ||
url='https://github.com/SCM-NV/nano-qmflows', | ||
author='Felipe Zapata & Ivan Infante', | ||
author_email='[email protected]', | ||
keywords='chemistry Photochemistry Simulation', | ||
long_description=readme() + '\n\n', | ||
long_description_content_type='text/x-rst', | ||
packages=find_packages(), | ||
packages=find_packages(exclude=["test"]), | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
'Natural Language :: English', | ||
|
@@ -198,7 +199,6 @@ def get_paths() -> "tuple[list[str], list[str]]": | |
'test': parse_requirements("test_requirements.txt"), | ||
'doc': parse_requirements("doc_requirements.txt"), | ||
}, | ||
include_package_data=True, | ||
package_data={ | ||
'nanoqm': ['basis/*.json', 'basis/BASIS*', 'basis/GTH_POTENTIALS', 'py.typed', '*.pyi'] | ||
}, | ||
|