Example #1
0
      version=hooks.get_version(name, VERSION),
      description='Simulation and map-making tools for the QUBIC experiment.',
      long_description=long_description,
      url='',
      author='Pierre Chanial',
      author_email='*****@*****.**',
      install_requires=[
          'progressbar', 'pyoperators>=0.13.2', 'pysimulators>=1.0.8',
          'healpy>=0.6.1', 'pyYAML'
      ],
      packages=[
          'qubic', 'qubic/calfiles', 'qubic/data', 'qubic/io', 'qubic/dicts'
      ],
      package_data={
          'qubic': ['calfiles/*', 'data/*', 'scripts/*py', 'dicts/*.dict']
      },
      platforms=platforms.split(','),
      keywords=keywords.split(','),
      cmdclass=hooks.get_cmdclass(),
      ext_modules=ext_modules,
      license='CeCILL-B',
      classifiers=[
          'Programming Language :: Python',
          'Programming Language :: Python :: 2 :: Only',
          'Development Status :: 4 - Beta',
          'Intended Audience :: Science/Research',
          'Operating System :: OS Independent',
          'Topic :: Scientific/Engineering',
          'Topic :: Scientific/Engineering :: Astronomy'
      ])
Example #2
0
setup(name=name,
      version=get_version(name, VERSION),
      description='Operators and solvers for high-performance computing.',
      long_description=long_description,
      url='http://pchanial.github.com/pyoperators',
      author='Pierre Chanial',
      author_email='*****@*****.**',
      maintainer='Pierre Chanial',
      maintainer_email='*****@*****.**',
      requires=['numpy(>=1.6)', 'scipy(>=0.9)', 'pyfftw'],
      install_requires=['numexpr>2'],
      packages=['pyoperators', 'pyoperators.iterative', 'pyoperators.utils'],
      platforms=platforms.split(','),
      keywords=keywords.split(','),
      cmdclass=get_cmdclass(),
      ext_modules=ext_modules,
      license='CeCILL-B',
      classifiers=[
          'Programming Language :: Python',
          'Programming Language :: Python :: 2',
          'Programming Language :: Python :: 2.6',
          'Programming Language :: Python :: 2.7',
          'Programming Language :: Python :: 3',
          'Programming Language :: Python :: 3.3',
          'Programming Language :: Python :: 3.4', 'Programming Language :: C',
          'Programming Language :: Cython', 'Development Status :: 4 - Beta',
          'Intended Audience :: Science/Research',
          'Operating System :: OS Independent',
          'Topic :: Scientific/Engineering'
      ])
Example #3
0
 version=get_version(name, VERSION),
 description='Operators and solvers for high-performance computing.',
 long_description=long_description,
 url='http://pchanial.github.com/pyoperators',
 author='Pierre Chanial',
 author_email='*****@*****.**',
 maintainer='Pierre Chanial',
 maintainer_email='*****@*****.**',
 requires=['numpy(>=1.6)',
           'scipy(>=0.9)',
           'pyfftw'],
 install_requires=['numexpr>2'],
 packages=['pyoperators', 'pyoperators.iterative', 'pyoperators.utils'],
 platforms=platforms.split(','),
 keywords=keywords.split(','),
 cmdclass=get_cmdclass(),
 ext_modules=ext_modules,
 license='CeCILL-B',
 classifiers=[
     'Programming Language :: Python',
     'Programming Language :: Python :: 2',
     'Programming Language :: Python :: 2.6',
     'Programming Language :: Python :: 2.7',
     'Programming Language :: Python :: 3',
     'Programming Language :: Python :: 3.3',
     'Programming Language :: Python :: 3.4',
     'Programming Language :: C',
     'Programming Language :: Cython',
     'Development Status :: 4 - Beta',
     'Intended Audience :: Science/Research',
     'Operating System :: OS Independent',
Example #4
0
                         libraries=['gomp',
                                    ('fmod', {'sources': ['src/wig3j.f']})])]

setup(name=name,
      version=hooks.get_version(name, VERSION),
      description='Simulation and map-making tools for the QUBIC experiment.',
      long_description=long_description,
      url='',
      author='Pierre Chanial',
      author_email='*****@*****.**',
      install_requires=['progressbar',
                        'pyoperators>=0.13.2',
                        'pysimulators>=1.0.8',
                        'healpy>=0.6.1',
                        'pyYAML'],
      packages=['qubic', 'qubic/calfiles', 'qubic/data', 'qubic/io'],
      package_data={'qubic': ['calfiles/*', 'data/*', 'scripts/*py']},
      platforms=platforms.split(','),
      keywords=keywords.split(','),
      cmdclass=hooks.get_cmdclass(),
      ext_modules=ext_modules,
      license='CeCILL-B',
      classifiers=[
          'Programming Language :: Python',
          'Programming Language :: Python :: 2 :: Only',
          'Development Status :: 4 - Beta',
          'Intended Audience :: Science/Research',
          'Operating System :: OS Independent',
          'Topic :: Scientific/Engineering',
          'Topic :: Scientific/Engineering :: Astronomy'])