~ubuntu-branches/ubuntu/trusty/python-babel/trusty

« back to all changes in this revision

Viewing changes to tests/messages/data/setup.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-10-28 10:11:31 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131028101131-zwbmm8sc29iemmlr
Tags: 1.3-2ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - debian/rules: Run the testsuite during builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# -*- coding: utf-8 -*-
 
3
# vim: sw=4 ts=4 fenc=utf-8
 
4
# =============================================================================
 
5
# $Id$
 
6
# =============================================================================
 
7
# $URL$
 
8
# $LastChangedDate$
 
9
# $Rev$
 
10
# $LastChangedBy$
 
11
# =============================================================================
 
12
# Copyright (C) 2006 Ufsoft.org - Pedro Algarvio <ufs@ufsoft.org>
 
13
#
 
14
# Please view LICENSE for additional licensing information.
 
15
# =============================================================================
 
16
 
 
17
# THIS IS A BOGUS PROJECT
 
18
 
 
19
from setuptools import setup, find_packages
 
20
 
 
21
setup(
 
22
    name = 'TestProject',
 
23
    version = '0.1',
 
24
    license = 'BSD',
 
25
    author = 'Foo Bar',
 
26
    author_email = 'foo@bar.tld',
 
27
    packages = find_packages(),
 
28
)