Make project python package friendly

- Add setup.py
- Move classes to module files
- Move tests folder inside module folder
This commit is contained in:
2020-05-23 23:40:33 +02:00
parent ac1483ae1d
commit 77f10281c1
19 changed files with 383 additions and 470 deletions

4
stree/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
__version__ = "0.9rc1"
__author__ = "Ricardo Montañana Gómez"
from .Strees import Stree, Snode, Siterator
from .Strees_grapher import Stree_grapher, Snode_graph