tenfourfox/testing/talos/setup.py
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

56 lines
1.8 KiB
Python

import os
from setuptools import setup, find_packages
try:
here = os.path.dirname(os.path.abspath(__file__))
description = file(os.path.join(here, 'README.txt')).read()
except IOError, OSError:
description = ''
version = "0.0"
with open(os.path.join(here, "requirements.txt")) as f:
dependencies = f.read().splitlines()
dependency_links = []
setup(name='talos',
version=version,
description="A python performance testing framework that is usable on Windows, Mac and Linux.",
long_description=description,
classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
author='Mozilla Foundation',
author_email='tools@lists.mozilla.org',
url='https://wiki.mozilla.org/Buildbot/Talos',
license='MPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
package_data = {'': ['*.config',
'*.css',
'*.gif',
'*.htm',
'*.html',
'*.ico',
'*.js',
'*.json',
'*.manifest',
'*.php',
'*.png',
'*.rdf',
'*.sqlite',
'*.svg',
'*.xml',
'*.xul',
]},
zip_safe=False,
install_requires=dependencies,
dependency_links=dependency_links,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
talos = talos.run_tests:main
talos-results = talos.results:main
""",
test_suite = "tests"
)