1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 from setuptools
import find_packages
, setup
10 here
= os
.path
.dirname(os
.path
.abspath(__file__
))
11 description
= open(os
.path
.join(here
, "README")).read()
17 with
open(os
.path
.join(here
, "requirements.txt")) as f
:
18 dependencies
= f
.read().splitlines()
25 description
="Performance testing framework for Windows, Mac and Linux.",
26 long_description
=description
,
28 "Programming Language :: Python :: 2.7",
29 "Programming Language :: Python :: 2 :: Only",
31 # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
32 author
="Mozilla Foundation",
33 author_email
="tools@lists.mozilla.org",
34 url
="https://wiki.mozilla.org/Buildbot/Talos",
36 packages
=find_packages(exclude
=["ez_setup", "examples", "tests"]),
37 include_package_data
=True,
59 install_requires
=dependencies
,
60 dependency_links
=dependency_links
,
62 # -*- Entry points: -*-
64 talos = talos.run_tests:main
65 talos-results = talos.results:main