gecko-dev/testing/raptor/setup.py

30 строки
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
""")