~ubuntu-branches/ubuntu/quantal/lightning-extension/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/testing/mozbase/mozprocess/setup.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-09-03 14:00:01 UTC
  • mfrom: (1.3.6)
  • Revision ID: package-import@ubuntu.com-20120903140001-vg7pjaks2orp9sor
Tags: 1.8+build1-0ubuntu1
* New upstream stable release to support Thunderbird 16 (CALENDAR_1_8_BUILD1)
  - LP: #1062587

* Add extra Makefiles that are needed for the build
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
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
3
 
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
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
4
 
5
5
import os
6
6
from setuptools import setup, find_packages
7
7
 
8
 
version = '0.1b2'
 
8
PACKAGE_VERSION = '0.3'
9
9
 
10
10
# take description from README
11
11
here = os.path.dirname(os.path.abspath(__file__))
15
15
    description = ''
16
16
 
17
17
setup(name='mozprocess',
18
 
      version=version,
 
18
      version=PACKAGE_VERSION,
19
19
      description="Mozilla-authored process handling",
20
20
      long_description=description,
21
 
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
22
 
      keywords='',
23
 
      author='Mozilla Automation and Testing Team',
 
21
      classifiers=['Environment :: Console',
 
22
                   'Intended Audience :: Developers',
 
23
                   'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
 
24
                   'Natural Language :: English',
 
25
                   'Operating System :: OS Independent',
 
26
                   'Programming Language :: Python',
 
27
                   'Topic :: Software Development :: Libraries :: Python Modules',
 
28
                   ],
 
29
      keywords='mozilla',
 
30
      author='Mozilla Automation and Tools team',
24
31
      author_email='tools@lists.mozilla.com',
25
32
      url='https://github.com/mozilla/mozbase/tree/master/mozprocess',
26
 
      license='MPL',
 
33
      license='MPL 2.0',
27
34
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
28
35
      include_package_data=True,
29
36
      zip_safe=False,