mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
try:
|
|
here = os.path.dirname(os.path.abspath(__file__))
|
|
description = file(os.path.join(here, 'README.md')).read()
|
|
except IOError:
|
|
description = None
|
|
|
|
PACKAGE_VERSION = '1.2'
|
|
|
|
deps = ['mozinfo==0.3.3']
|
|
|
|
setup(name='mozInstall',
|
|
version=PACKAGE_VERSION,
|
|
description="This is a utility package for installing and uninstalling "
|
|
"Mozilla applications on various platforms.",
|
|
long_description=description,
|
|
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
classifiers=['Environment :: Console',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
|
'Natural Language :: English',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
keywords='mozilla',
|
|
author='Mozilla Automation and Tools team',
|
|
author_email='tools@lists.mozilla.org',
|
|
url='https://github.com/mozilla/mozbase',
|
|
license='MPL 2.0',
|
|
packages=find_packages(exclude=['legacy']),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=deps,
|
|
entry_points="""
|
|
# -*- Entry points: -*-
|
|
[console_scripts]
|
|
mozinstall = mozinstall:install_cli
|
|
mozuninstall = mozinstall:uninstall_cli
|
|
""",
|
|
)
|