Skip to content

Commit

Permalink
License autodetect fix
Browse files Browse the repository at this point in the history
  • Loading branch information
veghp committed Sep 5, 2020
1 parent 30cff7b commit a73ef5d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
14 changes: 5 additions & 9 deletions LICENCE.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@

The MIT License (MIT)
[OSI Approved License]

The MIT License (MIT)
MIT License

Copyright (c) 2016 Edinburgh Genome Foundry

Expand All @@ -13,13 +9,13 @@ 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 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.
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
23 changes: 13 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
import ez_setup

ez_setup.use_setuptools()

from setuptools import setup, find_packages

exec(open('dna_features_viewer/version.py').read()) # loads __version__
exec(open("dna_features_viewer/version.py").read()) # loads __version__

setup(name='dna_features_viewer',
version=__version__,
author='Zulko',
description='Plot features from DNA sequences (e.g. Genbank) with Python',
long_description=open('pypi-readme.rst').read(),
url='https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer',
license='MIT',
setup(
name="dna_features_viewer",
version=__version__,
author="Zulko",
description="Plot features from DNA sequences (e.g. Genbank) with Python",
long_description=open("pypi-readme.rst").read(),
url="https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer",
license="MIT",
keywords="DNA Sequence Feature Genbank Biopython Matplotlib",
packages= find_packages(exclude='docs'),
install_requires=["matplotlib>=3", "Biopython"])
packages=find_packages(exclude="docs"),
install_requires=["matplotlib>=3", "Biopython"],
)

0 comments on commit a73ef5d

Please sign in to comment.