diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..c688ecb --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @jhillacre diff --git a/README.md b/README.md index 8ec8b9b..0c298f7 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ The "map a dict from one API into a dict for another" python module. | Python | Branch | Build Status | Coverage Status | | ------ | ------ | ------------ | --------------- | -| 2.7 | master | [![Python 2 Build Status](https://semaphoreci.com/api/v1/emergence/transmogrifydict-py2/branches/master/shields_badge.svg)](https://semaphoreci.com/emergence/transmogrifydict-py2/branches/master) | [![Python 2 Coverage](https://docs.emergence.com/transmogrifydict/htmlcov_py2_master/coverage.svg)](https://docs.emergence.com/transmogrifydict/htmlcov_py2_master/) | -| 2.7 | develop | [![Python 2 Build Status](https://semaphoreci.com/api/v1/emergence/transmogrifydict-py2/branches/develop/shields_badge.svg)](https://semaphoreci.com/emergence/transmogrifydict-py2/branches/develop) | [![Python 2 Coverage](https://docs.emergence.com/transmogrifydict/htmlcov_py2_develop/coverage.svg)](https://docs.emergence.com/transmogrifydict/htmlcov_py2_develop/) | -| 3.5 | master | [![Python 3 Build Status](https://semaphoreci.com/api/v1/emergence/transmogrifydict-py3/branches/master/shields_badge.svg)](https://semaphoreci.com/emergence/transmogrifydict-py3/branches/master) | [![Python 3 Coverage](https://docs.emergence.com/transmogrifydict/htmlcov_py3_master/coverage.svg)](https://docs.emergence.com/transmogrifydict/htmlcov_py3_master/) | -| 3.5 | develop | [![Python 3 Build Status](https://semaphoreci.com/api/v1/emergence/transmogrifydict-py3/branches/develop/shields_badge.svg)](https://semaphoreci.com/emergence/transmogrifydict-py3/branches/develop) | [![Python 3 Coverage](https://docs.emergence.com/transmogrifydict/htmlcov_py3_develop/coverage.svg)](https://docs.emergence.com/transmogrifydict/htmlcov_py3_develop/) | +| 2.7 | master | [![Python 2 Build Status](https://semaphoreci.com/api/v1/arrai-innovations/transmogrifydict-py2/branches/master/shields_badge.svg)](https://semaphoreci.com/arrai-innovations/transmogrifydict-py2/branches/master) | [![Python 2 Coverage](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py2_master/coverage.svg)](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py2_master/) | +| 2.7 | develop | [![Python 2 Build Status](https://semaphoreci.com/api/v1/arrai-innovations/transmogrifydict-py2/branches/develop/shields_badge.svg)](https://semaphoreci.com/arrai-innovations/transmogrifydict-py2/branches/develop) | [![Python 2 Coverage](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py2_develop/coverage.svg)](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py2_develop/) | +| 3.5 | master | [![Python 3 Build Status](https://semaphoreci.com/api/v1/arrai-innovations/transmogrifydict-py3/branches/master/shields_badge.svg)](https://semaphoreci.com/arrai-innovations/transmogrifydict-py3/branches/master) | [![Python 3 Coverage](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py3_master/coverage.svg)](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py3_master/) | +| 3.5 | develop | [![Python 3 Build Status](https://semaphoreci.com/api/v1/arrai-innovations/transmogrifydict-py3/branches/develop/shields_badge.svg)](https://semaphoreci.com/arrai-innovations/transmogrifydict-py3/branches/develop) | [![Python 3 Coverage](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py3_develop/coverage.svg)](https://docs.arrai-dev.com/transmogrifydict/htmlcov_py3_develop/) | ## methods diff --git a/setup.py b/setup.py index a45d092..753ba0e 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,11 @@ setup( name='transmogrifydict', - url='https://github.com/emergence/transmogrifydict', - version='1.1.1', + url='https://github.com/arrai-innovations/transmogrifydict', + version='1.1.2', description='The "turn a dict from one API into a dict for another" python module.', - author='Emergence by Design', - author_email='support@emergence.com', + author='Arrai Innovations', + author_email='support@arrai.com', py_modules=['transmogrifydict'], install_requires=[x for x in open('./requirements.txt').read().split('\n') if x] )