File: setup.py

package info (click to toggle)
binoculars 0.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 568 kB
  • sloc: python: 7,698; makefile: 158
file content (53 lines) | stat: -rw-r--r-- 2,083 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- encoding: utf-8 -*-

import os

from setuptools import setup, find_packages

description = ("Data reduction and analysis software for two-dimensional "
               "detectors in surface X-ray diffraction")

long_description =\
 """ BINoculars is a tool for data reduction and analysis of large sets of
 surface diffraction data that have been acquired with a
 two-dimensional X-ray detector. The intensity of each pixel of a
 two-dimensional detector is projected onto a three-dimensional grid
 in reciprocal-lattice coordinates using a binning algorithm. This
 allows for fast acquisition and processing of high-resolution data
 sets and results in a significant reduction of the size of the data
 set. The subsequent analysis then proceeds in reciprocal space. It
 has evolved from the specific needs of the ID03 beamline at the ESRF,
 but it has a modular design and can be easily adjusted and extended
 to work with data from other beamlines or from other measurement
 techniques."""

scripts = [os.path.join("scripts", d)
           for d in ["binoculars-fitaid",
                     "binoculars-gui",
                     "binoculars-processgui",
                     "binoculars"]]

install_requires = ['h5py',
                    'numpy',
                    'matplotlib',
                    'pyFAI',
                    'PyMca5',
                    'PyQt5']

setup(name='binoculars', version='0.0.1',
      description=description,
      long_description=long_description,
      packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
      install_requires=install_requires,
      scripts=scripts,
      author="Willem Onderwaater, Sander Roobol, Frédéric-Emmanuel Picca",
      author_email="onderwaa@esrf.fr, picca@synchrotron-soleil.fr",
      url='FIXME',
      license='GPL-3',
      classifiers=[
          'Topic :: Scientific/Engineering',
          'Development Status :: 3 - Alpha',
          'Operating System :: POSIX',
          'Operating System :: Unix',
          'Programming Language :: Python :: 2.7 3.5 3.6 3.7']
      )