Skip to content

Commit

Permalink
Merge pull request #76 from jnmclarty/fixextensions
Browse files Browse the repository at this point in the history
Fix Extensions
  • Loading branch information
jnmclarty committed Aug 15, 2015
2 parents a26f862 + 1c19bed commit f39c1a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@ include trump/templating/settings *.cfg_sample
include trump/config *.cfg_sample
include trump/test/testdata *
recursive-include trump/extensions/source *
recursive-include trump/extensions/source/tx-bbfetch *.py
recursive-include trump/extensions/source/tx-dbapi *.py
recursive-include trump/extensions/source/tx-psycopg2 *.py
recursive-include trump/extensions/source/tx-pydatacsv *.py
recursive-include trump/extensions/source/tx-pydatadatareaders *.py
recursive-include trump/extensions/source/tx-quandl *.py
recursive-include trump/extensions/source/tx-trump *.py
recursive-include trump/extensions/source/tx-worldbankst *.py
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def read(*p):
'trump.templating' : ['settings/*.cfg_sample', 'test/*'],
'trump.aggregation' : ['test/*'],
#'trump.extensions.source' : ['*'],
'trump.extensions' : ['*.py'] + ['source/{}/tx-*'.format(f) for f in ['bbfetch', 'dbapi', 'psycopg2', 'pydatacsv', 'pydatadatareaderst', 'quandl', 'sqlalchemy', 'worldbankst', 'trump']],
'trump.extensions' : ['*.py'] + ['source/tx-{}/*'.format(f) for f in ['bbfetch', 'dbapi', 'psycopg2', 'pydatacsv', 'pydatadatareaderst', 'quandl', 'sqlalchemy', 'worldbankst', 'trump']],
'trump.reporting' : ['test/*'],
'trump.tools' : ['test/*']},
cmdclass = {'install': TrumpInstall},
Expand All @@ -71,4 +71,4 @@ def read(*p):
'Topic :: Office/Business',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7'])
'Programming Language :: Python :: 2.7'])

0 comments on commit f39c1a4

Please sign in to comment.