Skip to content

Commit 4247242

Browse files
authored
Release v1.2.1 (first release under Apache 2.0) (#292)
* release v1.2.1 under Apache 2.0 * update readme
1 parent 60a3838 commit 4247242

File tree

3 files changed

+18
-21
lines changed

3 files changed

+18
-21
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,21 @@ The package also provides multiple dockerfiles in ```dockerfiles```. One can use
4141
Features
4242
--------
4343
- Density fitting scheme and direct SCF scheme;
44-
- SCF, analytical Gradient, and analytical Hessian calculations for Hartree-Fock and DFT;
44+
- SCF, analytical gradient, and analytical Hessian calculations for Hartree-Fock and DFT;
4545
- LDA, GGA, mGGA, hybrid, and range-separated functionals via [libXC](https://gitlab.com/libxc/libxc/-/tree/master/);
4646
- Spin-conserved and spin-flip TDA and TDDFT for excitated states
4747
- Geometry optimization and transition state search via [geomeTRIC](https://geometric.readthedocs.io/en/latest/);
4848
- Dispersion corrections via [DFTD3](https://github.com/dftd3/simple-dftd3) and [DFTD4](https://github.com/dftd4/dftd4);
4949
- Nonlocal functional correction (vv10) for SCF and gradient;
5050
- ECP is supported and calculated on CPU;
5151
- PCM models, SMD model, their analytical gradients, and semi-analytical Hessian matrix;
52-
- Unrestricted Hartree-Fock and Unrestricted DFT, gradient, and Hessian;
52+
- Unrestricted Hartree-Fock and unrestricted DFT, gradient, and Hessian;
5353
- MP2/DF-MP2 and CCSD (experimental);
5454
- Polarizability, IR, and NMR shielding (experimental);
5555
- QM/MM with PBC;
5656
- CHELPG, ESP, and RESP atomic charge;
57-
- Multi-GPU for density fitting (experimental)
57+
- Multi-GPU for both direct SCF and density fitting (experimental)
58+
- SCF and DFT with periodic boundary condition (experimental)
5859

5960
Limitations
6061
--------

gpu4pyscf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '1.2.0'
15+
__version__ = '1.2.1'
1616

1717
from . import lib, grad, hessian, solvent, scf, dft

setup.py

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
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.
42
#
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
66
#
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
118
#
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.
1614
#
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/>.
1915

2016
import os
2117
import sys
@@ -28,10 +24,10 @@
2824
from distutils.util import get_platform
2925

3026
NAME = 'gpu4pyscf'
31-
AUTHOR = 'Qiming Sun'
32-
AUTHOR_EMAIL = 'osirpt.sun@gmail.com'
27+
AUTHOR = 'PySCF developers'
28+
AUTHOR_EMAIL = None
3329
DESCRIPTION = 'GPU extensions for PySCF'
34-
LICENSE = 'GPLv3'
30+
LICENSE = 'Apache-2.0'
3531
URL = None
3632
DOWNLOAD_URL = None
3733
CLASSIFIERS = None

0 commit comments

Comments
 (0)