Skip to content

Commit

Permalink
This commit changes the license to MIT, as agreed by all contributors
Browse files Browse the repository at this point in the history
to the software (see #9).

To indicate this change, the minor version number has been increased to 1.0.4.

Closes issue #9.
  • Loading branch information
clauswilke committed Nov 1, 2018
1 parent 170dd64 commit 7b1ddab
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
7 changes: 7 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2018 Tien, Sydykova, Meyer, Wilke

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3 changes: 1 addition & 2 deletions PeptideBuilder/Geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
geometry() function, which returns the default geometry
for the requested amino acid.
This file is provided to you under the GNU General Public
License, version 2.0 or later.'''
This file is provided to you under the MIT License.'''

from __future__ import print_function
import random
Expand Down
3 changes: 1 addition & 2 deletions PeptideBuilder/PeptideBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
This module also requires the Bio.PDB module from
Biopython, for structure manipulation.
This file is provided to you under the GNU General Public
License, version 2.0 or later.'''
This file is provided to you under the MIT License.'''

from __future__ import print_function
from Bio.PDB import *
Expand Down
2 changes: 1 addition & 1 deletion PeptideBuilder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
* PeptideBuilder
* Geometry
"""
__version__ = '1.0.3'
__version__ = '1.0.4'
from .PeptideBuilder import *
from .Geometry import *
6 changes: 3 additions & 3 deletions README.txt → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Reference:
M. Z. Tien, D. K. Sydykova, A. G. Meyer, C. O. Wilke (2013). PeptideBuilder:
A simple Python library to generate model peptides. PeerJ 1:e80.

The software is provided to you under the GNU General Public
License, version 2.0 or later. The most up-to-date version of this software is
available at https://github.com/mtien/PeptideBuilder.
The software is provided to you under the MIT license (see file LICENSE).
The most up-to-date version of this software is available at
https://github.com/mtien/PeptideBuilder.

The files 'Geometry.py' and 'PeptideBuilder.py' constitute the PeptideBuilder
library. They need to be placed into the search path of your python
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@

from setuptools import setup
setup(name = 'PeptideBuilder',
version = '1.0.3',
version = '1.0.4',
description = 'Tools to create peptide PDB files using geometry as input',
author = 'Matthew Z. Tien',
author_email = '[email protected]',
url = 'https://github.com/mtien/PeptideBuilder',
download_url = 'https://github.com/mtien/PeptideBuilder/archive/v1.0.2.tar.gz',
download_url = 'https://github.com/mtien/PeptideBuilder/archive/v1.0.4.tar.gz',
platforms = 'Tested on Mac OS X.',
packages = ['PeptideBuilder'],
install_requires=['Biopython']
Expand Down

0 comments on commit 7b1ddab

Please sign in to comment.