Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
lanzagar committed Jul 19, 2017
1 parent 39cf725 commit 3aafb14
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 7 deletions.
15 changes: 15 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Copyright (C) 2013-2017 Bioinformatics Laboratory, University of Ljubljana,
Faculty of Computer and Information Science

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
9 changes: 7 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
include orangecontrib/example/tutorials/*.ows
include orangecontrib/example/widgets/icons/*
include orangecontrib/variants/tutorials/*.ows
include orangecontrib/variants/widgets/icons/*
include orangecontrib/variants/datasets/*

include requirements.txt
include README.md
include LICENSE
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Orange3
PyVCF
Binary file removed screenshot.png
Binary file not shown.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys
from setuptools import setup, find_packages

NAME = "Orange3 Variants"
NAME = "Orange3-Variants"

VERSION = "0.0.1"

Expand All @@ -31,10 +31,10 @@
# Data files that will be installed outside site-packages folder
]

INSTALL_REQUIRES = [
'Orange3',
'PyVCF',
]
INSTALL_REQUIRES = sorted(set(
line.partition('#')[0].strip()
for line in open(path.join(path.dirname(__file__), 'requirements.txt'))
) - {''})

ENTRY_POINTS = {
# Entry points that marks this package as an orange add-on. If set, addon will
Expand Down

0 comments on commit 3aafb14

Please sign in to comment.