mirror of
https://github.com/kennethreitz-archive/python_project.git
synced 2026-06-05 15:40:19 +00:00
20 lines
279 B
Python
20 lines
279 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
""" Example -- Core Package
|
|
"""
|
|
|
|
|
|
import packages.extlib
|
|
import packages.extlib2
|
|
|
|
|
|
__version__ = '0.1.1'
|
|
__lisence__ = 'MIT'
|
|
__author__ = 'Kenneth Reitz'
|
|
|
|
|
|
class model(object):
|
|
"""Generic class used throught application"""
|
|
def __init__(self):
|
|
pass
|
|
|