~mterry/duplicity/backend-unification

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Terry
  • Date: 2014-04-20 05:58:47 UTC
  • mto: This revision was merged to the branch mainline in revision 978.
  • Revision ID: michael.terry@canonical.com-20140420055847-5btxtxythvsblgpk
More reorg of testing/

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
      maintainer_email="kenneth@loafman.com",
132
132
      url="http://duplicity.nongnu.org/index.html",
133
133
      packages = ['duplicity',
134
 
                  'duplicity.backends',
135
 
                  'testing',
136
 
                  'testing.helpers',
137
 
                  'testing.tests'],
 
134
                  'duplicity.backends'],
138
135
      package_dir = {"duplicity" : "duplicity",
139
136
                     "duplicity.backends" : "duplicity/backends",},
140
137
      ext_modules = [Extension("duplicity._librsync",
144
141
                               libraries=["rsync"])],
145
142
      scripts = ['bin/rdiffdir', 'bin/duplicity'],
146
143
      data_files = data_files,
147
 
      tests_require = ['lockfile', 'mock', 'nose', 'pexpect'],
148
 
      test_suite = 'nose.collector',
 
144
      tests_require = ['lockfile', 'mock', 'pexpect'],
 
145
      test_suite = 'testing',
149
146
      cmdclass={'test': TestCommand,
150
147
                'install': InstallCommand,
151
148
                'sdist': SDistCommand},