blob: c73c2252a923fe34eab677e763cf16d2452288aa [file] [log] [blame]
Kapileshwar Singhfeeb3862015-09-02 18:01:40 +01001#!/usr/bin/env python
Javi Merinoc8b7cb82016-01-05 16:13:08 +00002# Copyright 2015-2016 ARM Limited
Kapileshwar Singhfeeb3862015-09-02 18:01:40 +01003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16from setuptools import setup, find_packages
17
18
Javi Merinoadb8fc22016-07-07 18:15:10 +010019execfile("bart/version.py")
Kapileshwar Singhfeeb3862015-09-02 18:01:40 +010020
21LONG_DESCRIPTION = """Behavioural Analysis involves the expressing the general
22expectation of the state of the system while targeting a single or set of heuristics.
23This is particularly helpful when there are large number of factors that can change
24the behaviour of the system and testing all permutations of these input parameters
25is impossible. In such a scenario an assertion of the final expectation can be
26useful in managing performance and regression.
27
28The Behavioural Analysis and Regression Toolkit is based on TRAPpy. The primary goal is
29to assert behaviours using the FTrace output from the kernel
30"""
31
32REQUIRES = [
Javi Merinob03236f2015-11-10 14:40:30 +000033 "TRAPpy>=3.0",
Kapileshwar Singhfeeb3862015-09-02 18:01:40 +010034]
35
Javi Merinoa2d51ed2015-10-05 18:46:14 +010036setup(name='bart-py',
Javi Merinoadb8fc22016-07-07 18:15:10 +010037 version=__version__,
Kapileshwar Singhfeeb3862015-09-02 18:01:40 +010038 license="Apache v2",
39 author="ARM-BART",
40 author_email="bart@arm.com",
41 description="Behavioural Analysis and Regression Toolkit",
42 long_description=LONG_DESCRIPTION,
43 url="http://arm-software.github.io/bart",
44 packages=find_packages(),
45 include_package_data=True,
46 classifiers=[
47 "Development Status :: 5 - Production/Stable",
48 "Environment :: Web Environment",
49 "Environment :: Console",
50 "License :: OSI Approved :: Apache Software License",
51 "Operating System :: POSIX :: Linux",
52 "Programming Language :: Python :: 2.7",
53 # As we depend on trace data from the Linux Kernel/FTrace
54 "Topic :: System :: Operating System Kernels :: Linux",
55 "Topic :: Scientific/Engineering :: Visualization"
56 ],
57 install_requires=REQUIRES
58 )