forked from cclib/cclib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cclib#323 from langner/release-1.5
More v1.5 updates, new DOI and change of license to BSD
- Loading branch information
Showing
89 changed files
with
372 additions
and
1,139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,55 @@ | ||
The developers of cclib would like the thank the following (in alphabetical order) who have contributed in some way to cclib: | ||
We would like the thank the following who have contributed in some way to cclib: | ||
|
||
Nuno Bandeira -- for bug reporting | ||
Björn Baumeier -- for bug reporting | ||
Dermot Brougham -- for bug reporting | ||
bwang2453 -- for patches and new features | ||
Avril Coghlan -- for designing the cclib logo | ||
Ramon Crehuet -- for new features | ||
Björn Dahlgren -- for bug reporting | ||
Yafei Dai -- for bug reporting | ||
Abhishek Dey -- for bug reporting | ||
Matt Ernst -- for patches | ||
Clyde Fare -- for bug reporting and patches | ||
Christos Garoufalis -- for bug reporting | ||
Sagar Gaur -- for bug fixes | ||
Sagar Gaur -- for patches | ||
glideht -- for bug reporting | ||
Edward Holland -- for patches | ||
Karen Hemelsoet -- for bug reporting | ||
Ian Hovell -- for bug reporting | ||
Geoff Hutchison -- for patches, files and a new parser | ||
Julien Idé -- for bug reporting | ||
csjacky -- for bug reporting | ||
Russell Johnson -- for providing CCCBDB (NIST) logfiles | ||
Jerome Kieffer -- for bug reporting | ||
Greg Magoon -- for bug reporting and patches | ||
Scott McKechnie -- for bug reporting | ||
mkrompiec -- for contributing test files | ||
mwykes -- for bug reporting and patches | ||
Alexis Otero-Calvis -- for bug reporting | ||
Rob Paton -- for creating and running Jaguar test jobs | ||
Martin Peeks -- for patches | ||
Felix Plasser -- for bug reporting and contributing files | ||
Felix Plasser -- for fixes, patches and contributing files | ||
Martin Rahm -- for bug reporting | ||
Marius Retegan -- for bug reporting | ||
Tamilmani S -- for bug reporting | ||
Melchor Sanchez -- for bug reporting | ||
Alex Schild -- for ideas and contributing test files | ||
Sanjeed Schamnad -- for patches new features | ||
Jen Schwartz -- for helping create and run Jaguar 6.0 test jobs | ||
Tiago Silva -- for bug reporting | ||
Pavel Solntsev -- for bug reporting | ||
Ben Stein -- for patches | ||
Adam Swanson -- for bug reporting | ||
Joe Townsend -- for giving multiple GAMESS files to test on | ||
Joe Townsend -- for contributing multiple GAMESS files to test on | ||
Chengju Wang -- for bug reporting | ||
Andrew Warden -- for bug reporting | ||
Samuel Wilson -- for bug reporting | ||
Fedor Zhuravlev -- for patches | ||
|
||
Please let us know if we have omitted someone from this list. | ||
Developers of cclib | ||
Eric J. Berquist | ||
Karol M. Langner | ||
Noel M. O'Boyle | ||
Adam L. Tenderholt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# | ||
# This file is part of cclib (http://cclib.github.io), a library for parsing | ||
# and interpreting the results of computational chemistry packages. | ||
# Copyright (c) 2016, the cclib development team | ||
# | ||
# Copyright (C) 2006-2016, the cclib development team | ||
# | ||
# The library is free software, distributed under the terms of | ||
# the GNU Lesser General Public version 2.1 or later. You should have | ||
# received a copy of the license along with cclib. You can also access | ||
# the full license online at http://www.gnu.org/copyleft/lgpl.html. | ||
# This file is part of cclib (http://cclib.github.io) and is distributed under | ||
# the terms of the BSD 3-Clause License. | ||
|
||
"""cclib: parsers and algorithms for computational chemistry | ||
|
@@ -25,7 +20,7 @@ | |
Environment :: Console | ||
Intended Audience :: Science/Research | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) | ||
License :: OSI Approved :: BSD License | ||
Natural Language :: English | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
|
@@ -45,11 +40,11 @@ def setup_cclib(): | |
# The list of packages to be installed. | ||
cclib_packages = [ | ||
'cclib', | ||
'cclib.bridge', | ||
'cclib.io', | ||
'cclib.method', | ||
'cclib.parser', | ||
'cclib.progress', | ||
'cclib.method', | ||
'cclib.bridge', | ||
'cclib.io' | ||
] | ||
|
||
doclines = __doc__.split("\n") | ||
|
@@ -62,7 +57,7 @@ def setup_cclib(): | |
author_email = "[email protected]", | ||
maintainer = "cclib development team", | ||
maintainer_email = "[email protected]", | ||
license = "LGPL", | ||
license = "BSD 3-Clause License", | ||
description = doclines[0], | ||
long_description = "\n".join(doclines[2:]), | ||
classifiers = classifiers.split("\n"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.