~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to testing/mozbase/manifestdestiny/setup.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This Source Code Form is subject to the terms of the Mozilla Public
 
2
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
 
3
# You can obtain one at http://mozilla.org/MPL/2.0/.
 
4
 
 
5
# The real details are in manifestparser.py; this is just a front-end
 
6
# BUT use this file when you want to distribute to python!
 
7
# otherwise setuptools will complain that it can't find setup.py
 
8
# and result in a useless package
 
9
 
 
10
from setuptools import setup, find_packages
 
11
import sys
 
12
import os
 
13
 
 
14
here = os.path.dirname(os.path.abspath(__file__))
 
15
try:
 
16
    filename = os.path.join(here, 'README.md')
 
17
    description = file(filename).read()
 
18
except:
 
19
    description = ''
 
20
 
 
21
PACKAGE_NAME = "ManifestDestiny"
 
22
PACKAGE_VERSION = "0.5.4"
 
23
 
 
24
setup(name=PACKAGE_NAME,
 
25
      version=PACKAGE_VERSION,
 
26
      description="Universal manifests for Mozilla test harnesses",
 
27
      long_description=description,
 
28
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
 
29
      keywords='mozilla manifests',
 
30
      author='Jeff Hammel',
 
31
      author_email='jhammel@mozilla.com',
 
32
      url='https://github.com/mozilla/mozbase/tree/master/manifestdestiny',
 
33
      license='MPL',
 
34
      zip_safe=False,
 
35
      packages=find_packages(exclude=['legacy']),
 
36
      install_requires=[
 
37
      # -*- Extra requirements: -*-
 
38
      ],
 
39
      entry_points="""
 
40
      [console_scripts]
 
41
      manifestparser = manifestparser:main
 
42
      """,
 
43
     )