Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision 1cd38d9f3ccee69bb49615c02f610f1c676597bb authored by Elias Kuthe on 04 July 2017, 12:30:05 UTC, committed by Elias Kuthe on 04 July 2017, 12:30:05 UTC
corrected markdown header syntax (see https://daringfireball.net/projects/markdown/syntax#header)
1 parent 309eaaf
  • Files
  • Changes
  • 16c81df
  • /
  • setup.py
Raw File Download
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:1cd38d9f3ccee69bb49615c02f610f1c676597bb
directory badge Iframe embedding
swh:1:dir:16c81dfa3974285f7817fc838f185a5da5a5a927
content badge Iframe embedding
swh:1:cnt:08296f061f06fe8aa02b828f80eb824413fcf6c0
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
setup.py
from setuptools import setup, find_packages  # Always prefer setuptools over distutils
from codecs import open  # To use a consistent encoding
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the relevant file
with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f:
    long_description = f.read()

setup(
    name='smoothfdr',
    version='0.9.5',
    description='False discovery rate smoothing',
    long_description=long_description,
    url='https://github.com/tansey/smoothfdr',
    author='Wesley Tansey',
    author_email='tansey@cs.utexas.edu',
    license='MIT',

    classifiers=[
        # Will be upgraded to 4 - Beta after full fMRI debugging.
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Science/Research',
        'Topic :: Scientific/Engineering',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
    ],
    keywords='statistics biostatistics fdr hypothesis machinelearning',

    packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
    install_requires=['numpy', 'scipy', 'matplotlib', 'pygfl'],
    package_data={
        'smoothfdr': [],
    },
    entry_points={
        'console_scripts': [
            'smoothfdr=smoothfdr:main',
            'neuropre=smoothfdr.neuropre:main',
            'neuropost=smoothfdr.neuropost:main',
            'gen2d=smoothfdr.gen2d:main'
        ],
    },
)
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top