Skip to content

Commit

Permalink
Merge pull request #64 from jhunkeler/fix-classifiers
Browse files Browse the repository at this point in the history
Read classifiers as list, not string
  • Loading branch information
pllim authored Aug 7, 2018
2 parents 8d9170f + 3756626 commit 9f7fe0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
AUTHOR_EMAIL = metadata.get('author_email', '')
LICENSE = metadata.get('license', 'unknown')
URL = metadata.get('url', 'http://www.stsci.edu')
CLASSIFIERS = metadata.get('classifier', [''])
CLASSIFIERS = [c for c in metadata.get('classifier', ['']).splitlines() if c]

# Version from git tag
version = relic.release.get_info()
Expand All @@ -64,7 +64,7 @@
package_dir={PACKAGENAME: PACKAGENAME},
package_data={PACKAGENAME: ['pars/*']},
entry_points=entry_points,
install_requires = [
install_requires=[
'astropy>=1.1',
'numpy'
],
Expand Down

0 comments on commit 9f7fe0f

Please sign in to comment.