mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
736 B
Python
24 lines
736 B
Python
from setuptools import setup, find_packages
|
|
|
|
version = '0.3.1'
|
|
|
|
# dependencies
|
|
with open('requirements.txt') as f:
|
|
deps = f.read().splitlines()
|
|
|
|
setup(name='marionette_driver',
|
|
version=version,
|
|
description="Marionette Driver",
|
|
long_description='See http://marionette-driver.readthedocs.org/',
|
|
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
keywords='mozilla',
|
|
author='Auto-tools',
|
|
author_email='tools-marionette@lists.mozilla.org',
|
|
url='https://wiki.mozilla.org/Auto-tools/Projects/Marionette',
|
|
license='MPL',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=deps,
|
|
)
|