Skip to content

Commit

Permalink
Setuptools doesn't support a list of strings for multiple authors? (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
thejunglejane authored and leifwalsh committed May 20, 2018
1 parent 6419db5 commit 27344b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 24 deletions.
10 changes: 2 additions & 8 deletions marbles/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,7 @@
license='MIT',
description=('A unittest extension that provides additional '
'information on test failure'),
author=[
'Jane Adams',
'Leif Walsh'
],
author_email=[
'[email protected]',
'[email protected]'
],
author='Jane Adams, Leif Walsh',
author_email='[email protected], [email protected]',
url='https://github.com/twosigma/marbles'
)
10 changes: 2 additions & 8 deletions marbles/mixins/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,7 @@
license='MIT',
description=('Semantically-rich assertions for use '
'in marbles and unittest test cases'),
author=[
'Jane Adams',
'Leif Walsh'
],
author_email=[
'[email protected]',
'[email protected]'
],
author='Jane Adams, Leif Walsh',
author_email='[email protected], [email protected]',
url='https://github.com/twosigma/marbles'
)
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,8 @@
'marbles.core',
'marbles.mixins'
],
author=[
'Jane Adams',
'Leif Walsh'
],
author_email=[
'[email protected]',
'[email protected]'
],
author='Jane Adams, Leif Walsh',
author_email='[email protected], [email protected]',
description='Read better test failures',
license='MIT',
url=url,
Expand Down

0 comments on commit 27344b3

Please sign in to comment.