~ubuntu-branches/ubuntu/trusty/virtualenvwrapper/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/testpackage/setup.py

  • Committer: Package Import Robot
  • Author(s): Jan Dittberner
  • Date: 2012-05-17 14:24:08 UTC
  • mfrom: (1.2.15)
  • Revision ID: package-import@ubuntu.com-20120517142408-5dexv6w1cldbzx3j
Tags: 3.3-1
* New upstream version
* change Build-Depends for dh_sphinxdoc to python-sphinx (>=
  1.0.7+dfsg) | python3-sphinx
* bump Standards-Version to 3.9.3 (no changes)
* refresh debian/patches/debianspecific-setup.py.patch
* use symlinks for duplicated ajax-loader.gif
* Fix "FTBFS if built twice in a row: virtualenvwrapper/__init__.pyc:
  binary file contents changed" by removing *.pyc in clean target
  (Closes: #641735)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Test package for virtualenvwrapper tests
 
2
from setuptools import setup
 
3
 
 
4
version = '1.0'
 
5
 
 
6
setup(
 
7
    name='testpackage',
 
8
    version=version,
 
9
    description="Fake package",
 
10
    author="Ingeniweb",
 
11
    author_email='thomas.desvenain@gmail.com',
 
12
    url='http://pypi.python.org/pypi/testpackage/',
 
13
    scripts=['testscript.py']
 
14
    )