attrs/attr/__init__.py

35 lines
518 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 (
Attribute,
_add_methods,
_make_attr,
2015-01-27 16:53:17 +00:00
)
2015-01-28 15:05:13 +00:00
__version__ = "15.0.0.dev0"
2015-01-27 16:53:17 +00:00
__author__ = "Hynek Schlawack"
__license__ = "MIT"
__copyright__ = "Copyright 2015 Hynek Schlawack"
attributes = s = _add_methods
attr = ib = _make_attr
2015-01-27 16:53:17 +00:00
__all__ = [
"Attribute",
"attr",
"attributes",
"has",
"ib",
"ls",
"s",
"to_dict",
2015-01-27 16:53:17 +00:00
]