From 27b278860dbd74b29c2e7fc9b8520ed1125e2b3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Sun, 24 May 2020 18:47:55 +0200 Subject: [PATCH] Fix install from scratch --- setup.py | 4 ++-- stree/__init__.py | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index eaff5a6..565362b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import setuptools -from stree import __author__, __version__ - +__version__ = "0.9rc1" +__author__ = "Ricardo Montañana Gómez" def readme(): with open('README.md') as f: diff --git a/stree/__init__.py b/stree/__init__.py index 28bd404..e242e2e 100644 --- a/stree/__init__.py +++ b/stree/__init__.py @@ -1,4 +1,2 @@ -__version__ = "0.9rc1" -__author__ = "Ricardo Montañana Gómez" from .Strees import Stree, Snode, Siterator from .Strees_grapher import Stree_grapher, Snode_graph \ No newline at end of file