Skip to content

Include .h5 data files as part of the installation #968

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ include README.rst
include dev_tools/requirements/deps/runtime.txt
include dev_tools/requirements/deps/resource_estimates_runtime.txt
include setup.py
recursive-include src *.py *.hdf5 bad_type_operator.data geometry_example.txt
recursive-include src *.py *.hdf5 *.h5 bad_type_operator.data geometry_example.txt
97 changes: 49 additions & 48 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
license='Apache 2',
author='The OpenFermion Developers',
author_email='[email protected]',
maintainer="Google Quantum AI open-source maintainers",
maintainer_email="[email protected]",
maintainer='Google Quantum AI open-source maintainers',
maintainer_email='[email protected]',
description=('The electronic structure package for quantum computers.'),
long_description=long_description,
python_requires='>=3.10.0',
Expand All @@ -53,58 +53,59 @@
include_package_data=True,
package_data={
'': [
os.path.join('src', 'openfermion', 'resource_estimates', 'integrals', '*.h5'),
os.path.join('src', 'openfermion', 'testing', '*.npy'),
os.path.join('src', 'openfermion', 'testing', '*.hdf5'),
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Quantum Computing",
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Quantum Computing',
],
keywords=[
"algorithms",
"api",
"application programming interface",
"chemistry",
"cirq",
"electronic structure",
"fermion",
"fermionic systems",
"google quantum",
"google",
"hamiltonians",
"high performance",
"nisq",
"noisy intermediate-scale quantum",
"python",
"quantum algorithms",
"quantum chemistry",
"quantum circuit simulator",
"quantum circuit",
"quantum computer simulator",
"quantum computing",
"quantum development kit",
"quantum programming language",
"quantum programming",
"quantum simulation",
"quantum",
"qubit hamiltonians",
"qubit",
"sdk",
"simulation",
"software development kit",
'algorithms',
'api',
'application programming interface',
'chemistry',
'cirq',
'electronic structure',
'fermion',
'fermionic systems',
'google quantum',
'google',
'hamiltonians',
'high performance',
'nisq',
'noisy intermediate-scale quantum',
'python',
'quantum algorithms',
'quantum chemistry',
'quantum circuit simulator',
'quantum circuit',
'quantum computer simulator',
'quantum computing',
'quantum development kit',
'quantum programming language',
'quantum programming',
'quantum simulation',
'quantum',
'qubit hamiltonians',
'qubit',
'sdk',
'simulation',
'software development kit',
],
)
Loading