~bigkevmcd/django-bzrviews/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Kevin McDermott
  • Date: 2014-01-14 12:23:11 UTC
  • Revision ID: kevin@canonical.com-20140114122311-493sm4xv8y0xp1lc
Add jenkins testing support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from setuptools import setup
2
2
 
3
 
TEST_REQUIREMENTS = [
4
 
    'mocker',
 
3
REQUIREMENTS = [
5
4
    'django>=1.5',
6
5
    'bzr>=2.5.1'
7
6
]
8
7
 
 
8
TEST_REQUIREMENTS = REQUIREMENTS + ['mocker']
 
9
 
9
10
 
10
11
setup(
11
12
    name='django-bzrviews',
16
17
    author_email='ce-infrastructure@lists.canonical.com',
17
18
    license='Proprietary',
18
19
    test_suite='bzrviews.tests',
 
20
    require=REQUIREMENTS,
19
21
    tests_require=TEST_REQUIREMENTS,
20
22
    packages=['bzrviews'])
21
23