attrs/attr/__init__.py

24 lines
396 B
Python
Raw Normal View History

2015-01-27 16:53:17 +00:00
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function
from ._funcs import (
ls,
to_dict,
2015-01-28 10:15:40 +00:00
has,
2015-01-27 16:53:17 +00:00
)
from ._make import (
_add_methods as s,
2015-01-27 22:03:42 +00:00
_make_attr as ib,
2015-01-27 16:53:17 +00:00
)
__version__ = "0.0.0.dev0"
__author__ = "Hynek Schlawack"
__license__ = "MIT"
__copyright__ = "Copyright 2015 Hynek Schlawack"
__all__ = [
2015-01-28 10:15:40 +00:00
"has", "ib", "s", "ls", "to_dict",
2015-01-27 16:53:17 +00:00
]