Page MenuHomeHEPForge

setup.py
No OneTemporary

setup.py

#! /usr/bin/env python
"""Rivet validator: a system to run MC event generators and generate standard physics plots using Rivet."""
## Get setuptools
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
longdesc = \
"""The Rivet validator is two things: a system to run event generators
automatically (on local machines, batch queues or the Grid), with standard
configurations for Rivet physics analyses; and a comparison system which
produces plots and Web pages comparing several sets of generators and
tunes on the same analysis data.
The validator is a Python library and scripts, for configuring and submitting
the generator/Rivet jobs, merging the outputs (if needed), and analysing the
output. The system is useful for generator-generator comparisons --- both
between different generators, different tunes of the same generator, and
genuinely separate generator codebases ---, Rivet-Rivet comparisons and
gen/tune-experiment comparisons.
"""
## Setup definition
setup(name = 'rivet-validator',
version = 0.2,
#packages = ['rivetval'],
include_package_data = True,
#install_requires = ['scipy', 'pyminuit'],
scripts = ['rivet-runmc', 'rivet-compare'],
author = ['Frank Siegert', 'Andy Buckley'],
author_email = 'rivet@projects.hepforge.org',
url = 'http://projects.hepforge.org/rivet/',
description = 'A high-level validation system for Monte Carlo event generators.',
long_description = longdesc,
keywords = 'tuning validation generator montecarlo data hep physics particle',
license = 'GPL',
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Physics']
)

File Metadata

Mime Type
text/x-python
Expires
Sat, Dec 21, 5:15 PM (12 h, 2 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4021647
Default Alt Text
setup.py (1 KB)

Event Timeline