Home | History | Annotate | Download | only in bart
      1 #!/usr/bin/env python
      2 #    Copyright 2015-2016 ARM Limited
      3 #
      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 #
     16 from setuptools import setup, find_packages
     17 
     18 
     19 execfile("bart/version.py")
     20 
     21 LONG_DESCRIPTION = """Behavioural Analysis involves the expressing the general
     22 expectation of the state of the system while targeting a single or set of heuristics.
     23 This is particularly helpful when there are large number of factors that can change
     24 the behaviour of the system and testing all permutations of these input parameters
     25 is impossible. In such a scenario an assertion of the final expectation can be
     26 useful in managing performance and regression.
     27 
     28 The Behavioural Analysis and Regression Toolkit is based on TRAPpy. The primary goal is
     29 to assert behaviours using the FTrace output from the kernel
     30 """
     31 
     32 REQUIRES = [
     33     "TRAPpy>=3.0",
     34 ]
     35 
     36 setup(name='bart-py',
     37       version=__version__,
     38       license="Apache v2",
     39       author="ARM-BART",
     40       author_email="bart (at] 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       )
     59