add setup.py, version, and py.typed

This commit is contained in:
Jan Petykiewicz 2022-03-27 23:50:21 -07:00
commit bef5421703
4 changed files with 74 additions and 0 deletions

4
snarl/VERSION.py Normal file
View file

@ -0,0 +1,4 @@
""" VERSION defintion. THIS FILE IS MANUALLY PARSED BY setup.py and REQUIRES A SPECIFIC FORMAT """
__version__ = '''
0.1
'''.strip()

View file

@ -1,2 +1,10 @@
"""
TODO: ALL DOCSTRINGS
"""
from .main import check_connectivity
from . import interfaces
__author__ = 'Jan Petykiewicz'
from .VERSION import __version__

0
snarl/py.typed Normal file
View file