Skip to content
This repository was archived by the owner on Feb 2, 2019. It is now read-only.

Commit 2ccfbce

Browse files
committed
VERSION 1.0.0
I feel comfortable calling this package production ready. No code changes for this release, but trove classifiers have finally been added, as has support for wheels (https://www.youtube.com/watch?v=r9biPKTozTg).
1 parent 0b623c4 commit 2ccfbce

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ v0.3.1, 2014/06/03 -- documentation typo fix (by @donsignore)
77
v0.4.0, 2014/07/01 -- Happy Canada Day, have some defaultdict support
88
v0.5.0, 2014/07/14 —- documentation fix (by @eukaryote), load function
99
v0.5.1, 2014/07/14 -- tox for local testing, README fix, 0.5.0 no longer from the future
10+
v1.0.0, 2014/08/18 -- Development Status :: 5 - Production/Stable

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
1-
from distutils.core import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from distutils.core import setup
25

36
setup(
47
name="attrdict",
5-
version="0.5.1",
8+
version="1.0.0",
69
author="Brendan Curran-Johnson",
710
author_email="brendan@bcjbcj.ca",
811
packages=["attrdict"],
912
url="https://github.com/bcj/AttrDict",
1013
license="MIT License",
1114
description="A dict with attribute-style access",
1215
long_description=open('README.rst').read(),
16+
classifiers=[
17+
"Development Status :: 5 - Production/Stable",
18+
"Intended Audience :: Developers",
19+
"License :: OSI Approved :: MIT License",
20+
"Programming Language :: Python :: 2",
21+
"Programming Language :: Python :: 2.6",
22+
"Programming Language :: Python :: 2.7",
23+
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3.3",
25+
"Programming Language :: Python :: 3.4",
26+
"Programming Language :: Python :: Implementation :: CPython",
27+
"Programming Language :: Python :: Implementation :: PyPy",
28+
],
1329
)

0 commit comments

Comments
 (0)