~snappy-dev/snapcraft/core

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Sergio Schvezov
  • Date: 2015-08-25 20:32:40 UTC
  • mto: (134.5.2 testing-fixes)
  • mto: This revision was merged to the branch mainline in revision 141.
  • Revision ID: sergio.schvezov@canonical.com-20150825203240-es3ech4lj4dhsipv
Initial json schema support

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
      )