https://github.com/nfusi/qvalue
Raw File
Tip revision: c215bdcfac262d72d1382263c7d507dd90535642 authored by Nicolò Fusi on 14 July 2016, 21:34:32 UTC
Merge pull request #3 from alexisboukouvalas/master
Tip revision: c215bdc
setup.py
import distutils.core
from distutils.core import setup

version_number = '0.1'
setup(name = 'qvalue',
      version = version_number,
      description = 'Converts p-values in q-values in order to account for multiple hypotheses testing, see (Storey and Tibshirani, 2003)',
      long_description = open('README.md').read(),
      author = 'Nicolo Fusi',
      author_email = 'nicolo.fusi@sheffield.ac.uk',
      packages = ['qvalue'],
      requires = ['numpy (>=1.5)',
                  'scipy (>=0.8)'],
      license = '3-clause BSD',
      )
back to top