diff --git a/.travis.yml b/.travis.yml index a12d30a..ceada53 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ script: deploy: provider: pypi user: mottosso + distributions: "sdist bdist_wheel" password: secure: TeaVT5oKTkGTHAdkW0fjRIyxD8mbGDh5e7VwjVY/nAmASuX6J+W1IKsmF2lvgKETlbnhNsGl+Lk2YkT5bxRGY4ZI0Hnm4Dewn1Rfq0HdUbTT19gSq86dBHfjZTuq7C5DILIA0SjNfmIQvDsICdj08rkdye+r1fleCtedZAhgkMU= on: diff --git a/pyblish_houdini/version.py b/pyblish_houdini/version.py index 76ae29d..094192d 100644 --- a/pyblish_houdini/version.py +++ b/pyblish_houdini/version.py @@ -1,7 +1,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_PATCH = 0 +VERSION_PATCH = 1 version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) version = '%i.%i.%i' % version_info diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..ac4da66 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,7 @@ +[metadata] +# This includes the license file in the wheel. +license_file = LICENSE + +[bdist_wheel] +# This produces a "universal" (Py2+3) wheel. +universal = 1