* Create __init__.py * Create __init__.py * Update __init__.py * Update __init__.py * Create __init__.py * Create __init__.py
16 lines
376 B
Python
16 lines
376 B
Python
#!/usr/bin/env python3.6
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Sebi-Machine.
|
|
"""
|
|
|
|
__author__ = 'Annihilator708'
|
|
# TODO: add yourselves here. I can't remember everyones handles.
|
|
__contributors__ = (__author__, 'Neko404NotFound',)
|
|
__license__ = 'MIT'
|
|
__title__ = 'Sebi-Machine'
|
|
__version__ = 'tbd'
|
|
|
|
__repository__ = f'https://github.com/{__author__}/{__title__}'
|
|
__url__ = __repository__
|