~longsleep/snapcraft/snapcraft-debs-plugin

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Snappy Tarmac
  • Author(s): Sergio Schvezov
  • Date: 2015-08-27 22:11:32 UTC
  • mfrom: (134.4.11 validation)
  • Revision ID: snappy_tarmac-20150827221132-b8b8au821wrnjyxt
Initial json schema support by sergiusens approved by chipaca,elopio

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
                'snapcraft.plugins'],
37
37
      package_data={'snapcraft.plugins': ['manifest.txt']},
38
38
      scripts=['bin/snapcraft'],
39
 
      data_files=[('share/snapcraft/plugins', ['plugins/' + x for x in os.listdir('plugins')])],
 
39
      data_files=[
 
40
          ('share/snapcraft/plugins', ['plugins/' + x for x in os.listdir('plugins')]),
 
41
          ('share/snapcraft/schema', ['schema/' + x for x in os.listdir('schema')]),
 
42
      ],
40
43
      cmdclass={'test': TestCommand},
41
 
)
 
44
      )