OLD | NEW |
(Empty) | |
| 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 import os |
| 6 from setuptools import setup |
| 7 |
| 8 PACKAGE_VERSION = '0.8' |
| 9 |
| 10 # take description from README |
| 11 here = os.path.dirname(os.path.abspath(__file__)) |
| 12 try: |
| 13 description = file(os.path.join(here, 'README.md')).read() |
| 14 except (OSError, IOError): |
| 15 description = '' |
| 16 |
| 17 setup(name='mozprocess', |
| 18 version=PACKAGE_VERSION, |
| 19 description="Mozilla-authored process handling", |
| 20 long_description=description, |
| 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', |
| 31 author_email='tools@lists.mozilla.org', |
| 32 url='https://wiki.mozilla.org/Auto-tools/Projects/MozBase', |
| 33 license='MPL 2.0', |
| 34 packages=['mozprocess'], |
| 35 include_package_data=True, |
| 36 zip_safe=False, |
| 37 install_requires=['mozinfo'], |
| 38 entry_points=""" |
| 39 # -*- Entry points: -*- |
| 40 """, |
| 41 ) |
OLD | NEW |