|
1 | | -#!/usr/bin/env python |
2 | | - |
3 | | -# gpu4pyscf is a plugin to use Nvidia GPU in PySCF package |
| 1 | +# Copyright 2021-2024 The PySCF Developers. All Rights Reserved. |
4 | 2 | # |
5 | | -# Copyright (C) 2022 Qiming Sun |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
6 | 6 | # |
7 | | -# This program is free software: you can redistribute it and/or modify |
8 | | -# it under the terms of the GNU General Public License as published by |
9 | | -# the Free Software Foundation, either version 3 of the License, or |
10 | | -# (at your option) any later version. |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
11 | 8 | # |
12 | | -# This program is distributed in the hope that it will be useful, |
13 | | -# but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | | -# GNU General Public License for more details. |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
16 | 14 | # |
17 | | -# You should have received a copy of the GNU General Public License |
18 | | -# along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | 15 |
|
20 | 16 | import os |
21 | 17 | import sys |
|
28 | 24 | from distutils.util import get_platform |
29 | 25 |
|
30 | 26 | NAME = 'gpu4pyscf' |
31 | | -AUTHOR = 'Qiming Sun' |
32 | | -AUTHOR_EMAIL = 'osirpt.sun@gmail.com' |
| 27 | +AUTHOR = 'PySCF developers' |
| 28 | +AUTHOR_EMAIL = None |
33 | 29 | DESCRIPTION = 'GPU extensions for PySCF' |
34 | | -LICENSE = 'GPLv3' |
| 30 | +LICENSE = 'Apache-2.0' |
35 | 31 | URL = None |
36 | 32 | DOWNLOAD_URL = None |
37 | 33 | CLASSIFIERS = None |
|
0 commit comments