-
Notifications
You must be signed in to change notification settings - Fork 385
/
Copy pathsetup.py
executable file
·120 lines (113 loc) · 4.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from setuptools import find_packages, setup
# This reads the __version__ variable from openfermion/_version.py
__version__ = ''
exec(open('src/openfermion/_version.py').read())
# Readme file as long_description:
long_description = '===========\n' + 'OpenFermion\n' + '===========\n\n'
with open('README.rst', 'r', encoding='utf-8') as readme:
long_description += readme.read()
# Read in package requirements.txt
requirements = open('dev_tools/requirements/deps/runtime.txt').readlines()
requirements = [r.strip() for r in requirements]
requirements = [r for r in requirements if not r.startswith('#')]
# Resource estimates requirements.
resource_requirements = open(
'dev_tools/requirements/deps/resource_estimates_runtime.txt'
).readlines()
resource_requirements = [r.strip() for r in resource_requirements]
resource_requirements = [r for r in resource_requirements if not r.startswith('#')]
docs_files_gen = os.walk('docs')
docs_data_files_tuples = []
for cwd, subdirs, files in list(docs_files_gen)[1:]:
if 'ipynb_checkpoints' in cwd:
continue
docs_data_files_tuples.append(
(os.path.join('openfermion', cwd), [os.path.join(cwd, file) for file in files])
)
setup(
name='openfermion',
version=__version__,
url='https://quantumai.google/openfermion',
license='Apache 2',
author='The OpenFermion Developers',
author_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',
install_requires=requirements,
extras_require={'resources': resource_requirements},
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
package_data={
'': [
os.path.join('src', 'openfermion', 'testing', '*.npy'),
os.path.join('src', 'openfermion', 'testing', '*.hdf5'),
]
},
data_files=docs_data_files_tuples,
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",
],
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",
],
)