gecko-dev/testing/raptor/setup.py
Rob Wood 4af496d7f2 Bug 1454466 - Move raptor in-tree; r=ahal
MozReview-Commit-ID: AkqbROfvmbu

--HG--
extra : rebase_source : bf30030a333852d6d81c4278e91b1ac9fef237fe
2018-04-16 17:15:38 -04:00

30 lines
767 B
Python

from __future__ import absolute_import
import os
from setuptools import setup
here = os.path.dirname(os.path.abspath(__file__))
description = 'Browser performance test framework prototype'
version = "0.0"
with open(os.path.join(here, "requirements.txt")) as f:
dependencies = f.read().splitlines()
setup(name='raptor',
version=version,
description=description,
url='https://github.com/rwood-moz/raptor',
author='Mozilla',
author_email='tools@lists.mozilla.org',
license='MPL 2.0',
packages=['raptor'],
zip_safe=False,
install_requires=dependencies,
include_package_data=True,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
raptor = raptor.raptor:main
""")