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" 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 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' diff --git a/setup.py b/setup.py index b6d867f..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', @@ -38,6 +39,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=(