From d60b907b5f9d6c51d544162c06e5c859b17c7c89 Mon Sep 17 00:00:00 2001 From: Geoff Low Date: Thu, 7 Dec 2017 10:42:13 +0000 Subject: [PATCH 1/5] Added URL metadata --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index b6d867f..3b76f77 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ install_requires=['requests', 'lxml', 'httpretty', 'six', 'click', 'faker', 'enum34'], tests_require=['mock'], license=open('LICENSE.txt').read(), + url='https://github.com/mdsol/rwslib/', zip_safe=False, test_suite='rwslib.tests.all_tests', classifiers=( From 9f69cb9e5394fdd4ef8953d201d57153e7ad9594 Mon Sep 17 00:00:00 2001 From: Geoff Low Date: Thu, 7 Dec 2017 10:43:49 +0000 Subject: [PATCH 2/5] Added missing readme --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 34c01cd..5da9de0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,4 @@ include README.md include LICENSE.txt include AUTHORS.rst include rwslib/extras/audit_event/README.md +include rwslib/builders/README.md From e6ac8dd446aad3aea15af03df61a55fd0393237b Mon Sep 17 00:00:00 2001 From: Geoff Low Date: Thu, 7 Dec 2017 10:44:23 +0000 Subject: [PATCH 3/5] Only upload the sdist --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 800f306..c1776c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,5 +20,5 @@ deploy: on: tags: true python: "3.6" - distributions: "sdist bdist_wheel" + distributions: "sdist" From f88e7cb17068b8dd88aec6508b6d68021700f559 Mon Sep 17 00:00:00 2001 From: Geoff Low Date: Fri, 8 Dec 2017 11:46:55 +0000 Subject: [PATCH 4/5] Added missing builders package --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 3b76f77..9b80134 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ packages = [ 'rwslib', 'rwslib.rws_requests', + 'rwslib.builders', 'rwslib.extras', 'rwslib.extras.audit_event', 'rwslib.extras.rwscmd', From 3f216089a1991e27b32a24c3eeb7b96fbe5f8fea Mon Sep 17 00:00:00 2001 From: Geoff Low Date: Fri, 8 Dec 2017 11:47:22 +0000 Subject: [PATCH 5/5] Bump the version --- rwslib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rwslib/__init__.py b/rwslib/__init__.py index a1dda6a..757a66f 100644 --- a/rwslib/__init__.py +++ b/rwslib/__init__.py @@ -2,7 +2,7 @@ __title__ = 'rwslib' __author__ = 'Ian Sparks (isparks@mdsol.com)' -__version__ = '1.2.0' +__version__ = '1.2.1' __license__ = 'MIT' __copyright__ = 'Copyright 2017 Medidata Solutions Inc'