Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
cstein committed Nov 13, 2023
2 parents 87a9968 + b9148f9 commit 4b1baf4
Show file tree
Hide file tree
Showing 18 changed files with 22 additions and 21 deletions.
8 changes: 5 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FragIt v2.X.X Release Notes
FragIt v1.9.0 Release Notes
===========================

This is a much-needed major revision to remove bugs
Expand Down Expand Up @@ -27,7 +27,7 @@ Updates since v1.8.0
```

* Includes some changes necessary for openbabel
cooperation.
cooperation with especially version 3.

* Fixed a few errors in the jmol script and template.

Expand All @@ -37,9 +37,11 @@ Updates since v1.8.0

Developer Changes

Made substantial changes to align FragIt with how
* Made substantial changes to align FragIt with how
python packages should be organized

* code updates and improvements all around

FragIt v1.8.0 Release Notes
===========================

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# FragIt

[![GitHub release](https://img.shields.io/github/release/FragIt/fragit-main.svg?style=flat)](https://github.com/FragIt/fragit-main/releases)
[![Build Status](https://travis-ci.org/FragIt/fragit-main.svg?branch=master)](https://travis-ci.org/FragIt/fragit-main)

FragIt is a python based tool that allows you to quickly fragment ["any"](http://openbabel.org/docs/2.3.0/FileFormats/Overview.html) molecule and use the produced output file(s) as an a starting point for input files in quantum chemistry programs that supports such fragment based methods.

Expand Down Expand Up @@ -47,4 +46,4 @@ In order to run FragIt, you *need* the following installed on your system:
* The FragIt source code, look above for information on how to obtain it
* [Open Babel](http://www.openbabel.org) 2.3 or newer with [python language bindings](http://openbabel.org/docs/dev/Installation/install.html#compile-language-bindings) enabled. Github user [andersx](https://github.com/andersx) [wrote a guide](http://combichem.blogspot.dk/2013/12/compiling-open-babel-with-python.html) to how that is accomplished.
* [Numpy](http://numpy.scipy.org) 1.5 or newer.
* [Python](http://www.python.org) version 2.7 or 3.5 (or later).
* [Python](http://www.python.org) 3.9 (or later).
2 changes: 1 addition & 1 deletion fragit/cmdline.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2011-2016 Casper Steinmann
Copyright (C) 2011-2023 Casper Steinmann
"""
import sys
import argparse
Expand Down
2 changes: 1 addition & 1 deletion fragit/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Copyright (C) 2010-2011 Mikael W. Ibsen
Some portions Copyright (C) 2011-2017 Casper Steinmann
Some portions Copyright (C) 2011-2023 Casper Steinmann
"""
from configparser import RawConfigParser
import sys
Expand Down
2 changes: 1 addition & 1 deletion fragit/fragit_exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2016 Casper Steinmann
Copyright (C) 2016-2023 Casper Steinmann
"""

class OBNotFoundException(ImportError):
Expand Down
2 changes: 1 addition & 1 deletion fragit/fragmentation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Copyright (C) 2010-2011 Mikael W. Ibsen
Some portions Copyright (C) 2011-2017 Casper Steinmann
Some portions Copyright (C) 2011-2023 Casper Steinmann
"""
import sys
from typing import List, Tuple
Expand Down
2 changes: 1 addition & 1 deletion fragit/gamessfmo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Copyright (C) 2010-2011 Mikael W. Ibsen
Some portions Copyright (C) 2011-2017 Casper Steinmann
Some portions Copyright (C) 2011-2023 Casper Steinmann
"""
import os
from typing import Dict, List, Tuple
Expand Down
2 changes: 1 addition & 1 deletion fragit/mfcc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2013-2017 Casper Steinmann
Copyright (C) 2013-2023 Casper Steinmann
"""

from fragit.fragit_exceptions import OBNotFoundException
Expand Down
2 changes: 1 addition & 1 deletion fragit/openbabelwrapper.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2011-2016 Casper Steinmann
Copyright (C) 2011-2023 Casper Steinmann
"""

from fragit.fragit_exceptions import OBNotFoundException
Expand Down
2 changes: 1 addition & 1 deletion fragit/outputformats.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2011-2016 Casper Steinmann
Copyright (C) 2011-2023 Casper Steinmann
"""

from fragit.gamessfmo import GamessFMO
Expand Down
2 changes: 1 addition & 1 deletion fragit/qmmm.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2013-2017 Casper Steinmann
Copyright (C) 2013-2023 Casper Steinmann
"""
from typing import List

Expand Down
2 changes: 1 addition & 1 deletion fragit/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (C) 2011-2023 Casper Steinmann
"""

version = ("1", "8", "0")
version = ("1", "9", "0")
version_str = ".".join(version)

doc_str = """FragIt is a tool to fragment large molecules for use in fragment based quantum chemistry methods.
Expand Down
2 changes: 1 addition & 1 deletion fragit/template.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2011-2016 Casper Steinmann
Copyright (C) 2011-2023 Casper Steinmann
"""

import os
Expand Down
2 changes: 1 addition & 1 deletion fragit/util.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Copyright (C) 2010-2011 Mikael W. Ibsen
Some portions Copyright (C) 2011-2016 Casper Steinmann
Some portions Copyright (C) 2011-2023 Casper Steinmann
"""
import os
import string
Expand Down
2 changes: 1 addition & 1 deletion fragit/writer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Copyright (C) 2010-2011 Mikael W. Ibsen
Some portions Copyright (C) 2011-2017 Casper Steinmann
Some portions Copyright (C) 2011-2023 Casper Steinmann
"""
from typing import List

Expand Down
2 changes: 1 addition & 1 deletion fragit/xyz.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2013-2017 Casper Steinmann
Copyright (C) 2013-2023 Casper Steinmann
"""
from typing import List

Expand Down
2 changes: 1 addition & 1 deletion fragit/xyzmfcc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2013-2017 Casper Steinmann
Copyright (C) 2013-2023 Casper Steinmann
"""
import numpy as np
from typing import List, Optional
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from fragit.strings import doc_str

__author__ = "Casper Steinmann"
__copyright__ = "Copyright 2017"
__copyright__ = "Copyright 2023"
__license__ = 'GPL2 or later'
__version__ = version_str
__email__ = "[email protected]"
Expand Down

0 comments on commit 4b1baf4

Please sign in to comment.