Skip to content

Commit

Permalink
Merge pull request #82 from mewwts/py3.6
Browse files Browse the repository at this point in the history
Update travis to test againts python 3.6
  • Loading branch information
mewwts authored Feb 25, 2017
2 parents 1c8926a + 572b6f5 commit 2540b0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: python
python:
- "2.7"
- "3.5"
- "3.6"
before_script: pip install coveralls
script:
- "py.test"
Expand Down
8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

from setuptools import setup
import addict

SHORT='Addict is a dictionary whose items can be set using both attribute and item syntax.'
LONG=('Addict is a module that exposes a Dictionary subclass that allows items to be set like attributes. '
LONG=('Addict is a module that exposes a dictionary subclass that allows items to be set like attributes. '
'Values are gettable and settable using both attribute and item syntax. '
'For more info check out the README at \'github.com/mewwts/addict\'.')

Expand Down

0 comments on commit 2540b0e

Please # to comment.