-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 846 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
setup(
name='adict',
version='0.1.7',
description='Dict with attr access to keys.',
long_description='''
Usage::
pip install adict
from adict import adict
d = adict(a=1)
assert d.a == d['a'] == 1
See all features, including ``ajson()`` in ``adict.py:test()``.
https://github.com/denis-ryzhkov/adict/blob/master/adict.py#L46
''',
url='https://github.com/denis-ryzhkov/adict',
author='Denis Ryzhkov',
author_email='denisr@denisr.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
py_modules=['adict'],
)