2015-01-27 16:53:17 +00:00
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
|
|
|
|
from ._funcs import (
|
2015-01-29 20:50:07 +00:00
|
|
|
asdict,
|
2015-01-29 19:50:42 +00:00
|
|
|
assoc,
|
2015-01-29 18:39:49 +00:00
|
|
|
has,
|
2015-01-27 16:53:17 +00:00
|
|
|
)
|
|
|
|
from ._make import (
|
2015-01-28 13:36:11 +00:00
|
|
|
Attribute,
|
2015-01-29 22:10:56 +00:00
|
|
|
Factory,
|
|
|
|
NOTHING,
|
2015-01-29 18:39:49 +00:00
|
|
|
attr,
|
|
|
|
attributes,
|
2015-02-09 12:16:56 +00:00
|
|
|
fields,
|
2015-01-30 07:57:33 +00:00
|
|
|
make_class,
|
2015-02-09 12:16:56 +00:00
|
|
|
validate,
|
2015-01-27 16:53:17 +00:00
|
|
|
)
|
2015-02-20 10:30:46 +00:00
|
|
|
from ._config import (
|
|
|
|
get_run_validators,
|
|
|
|
set_run_validators,
|
|
|
|
)
|
2015-02-20 15:34:21 +00:00
|
|
|
from . import filters
|
2015-01-29 11:20:17 +00:00
|
|
|
from . import validators
|
2015-01-27 16:53:17 +00:00
|
|
|
|
2015-02-21 13:08:36 +00:00
|
|
|
|
2015-08-20 11:59:36 +00:00
|
|
|
__version__ = "15.2.0.dev0"
|
2015-02-21 13:08:36 +00:00
|
|
|
|
|
|
|
__title__ = "attrs"
|
|
|
|
__description__ = "Attributes without boilerplate."
|
|
|
|
__uri__ = "https://attrs.readthedocs.org/"
|
|
|
|
|
2015-01-27 16:53:17 +00:00
|
|
|
__author__ = "Hynek Schlawack"
|
2015-02-21 13:08:36 +00:00
|
|
|
__email__ = "hs@ox.cx"
|
|
|
|
|
2015-01-27 16:53:17 +00:00
|
|
|
__license__ = "MIT"
|
2015-02-21 13:08:36 +00:00
|
|
|
__copyright__ = "Copyright (c) 2015 Hynek Schlawack"
|
2015-01-27 16:53:17 +00:00
|
|
|
|
|
|
|
|
2015-01-29 18:39:49 +00:00
|
|
|
s = attributes
|
|
|
|
attr = ib = attr
|
2015-01-29 09:17:08 +00:00
|
|
|
|
2015-01-27 16:53:17 +00:00
|
|
|
__all__ = [
|
2015-01-29 09:17:08 +00:00
|
|
|
"Attribute",
|
2015-01-29 22:10:56 +00:00
|
|
|
"Factory",
|
2015-01-29 15:24:49 +00:00
|
|
|
"NOTHING",
|
2015-01-29 20:50:07 +00:00
|
|
|
"asdict",
|
2015-01-29 19:50:42 +00:00
|
|
|
"assoc",
|
2015-01-29 09:17:08 +00:00
|
|
|
"attr",
|
|
|
|
"attributes",
|
2015-01-29 20:55:25 +00:00
|
|
|
"fields",
|
2015-02-20 15:34:21 +00:00
|
|
|
"filters",
|
2015-02-20 10:30:46 +00:00
|
|
|
"get_run_validators",
|
2015-01-29 09:17:08 +00:00
|
|
|
"has",
|
|
|
|
"ib",
|
2015-01-30 07:57:33 +00:00
|
|
|
"make_class",
|
2015-01-29 09:17:08 +00:00
|
|
|
"s",
|
2015-02-20 10:30:46 +00:00
|
|
|
"set_run_validators",
|
2015-02-02 13:04:47 +00:00
|
|
|
"validate",
|
2015-01-29 11:20:17 +00:00
|
|
|
"validators",
|
2015-01-27 16:53:17 +00:00
|
|
|
]
|