diff --git a/.travis.yml b/.travis.yml index 8df0c6e..a3ba3d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ # This file is part of Dictdiffer. # -# Copyright (C) 2014 CERN. +# Copyright (C) 2014, 2016 CERN. # # Dictdiffer is free software; you can redistribute it and/or modify # it under the terms of the MIT License; see LICENSE file for more @@ -15,6 +15,7 @@ python: - "2.7" - "3.3" - "3.4" + - "3.5" install: - pip install --upgrade pip @@ -32,3 +33,13 @@ after_success: notifications: email: false + +deploy: + provider: pypi + user: jirikuncar + password: + secure: tntrBrJuE3sqJcLxxbzPGj6zltrP/7GgSOFt7q/wn20JWc1SHhutkFqzO2DMShT4YZBlCwwL4jCLsVdMtARCsBIh/p2glTDLFAKC7DfSqwzsnGk/6Q5uyB7NOn7/GPXItyGEJB8cb6QgsMlpMCqv7+mjrL8+HhWVCaZz4B9lzeY= + distributions: "sdist bdist_wheel" + on: + tags: true + repo: inveniosoftware/dictdiffer diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..e116bb5 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,10 @@ +# This file is part of Dictdiffer. +# +# Copyright (C) 2016 CERN. +# +# Dictdiffer is free software; you can redistribute it and/or modify +# it under the terms of the MIT License; see LICENSE file for more +# details. + +[bdist_wheel] +universal = 1 diff --git a/setup.py b/setup.py index 8856faf..41f7ee9 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # This file is part of Dictdiffer. # # Copyright (C) 2013 Fatih Erikli. -# Copyright (C) 2014, 2015 CERN. +# Copyright (C) 2014, 2015, 2016 CERN. # # Dictdiffer is free software; you can redistribute it and/or modify # it under the terms of the MIT License; see LICENSE file for more @@ -78,6 +78,7 @@ def run_tests(self): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',