forked from quantumlib/OpenFermion-Psi4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (26 loc) · 972 Bytes
/
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
import os
from setuptools import setup, find_packages
# This reads the __version__ variable from openfermionpsi4/_version.py
exec(open('openfermionpsi4/_version.py').read())
# Readme file as long_description:
long_description = open('README.rst').read()
# Read in requirements.txt
requirements = open('requirements.txt').readlines()
requirements = [r.strip() for r in requirements]
setup(
name='openfermionpsi4',
version=__version__,
author='The OpenFermion Developers',
author_email='[email protected]',
url='https://www.openfermion.org/',
description='A plugin allowing OpenFermion to interface with Psi4.',
long_description=long_description,
install_requires=requirements,
license='GNU Lesser General Public License (LGPL), Version 3 or any later'
' version',
packages=find_packages(),
include_package_data=True,
package_data={
'': [os.path.join('openfermionpsi4', '_psi4_template')]
}
)