Skip to content
Snippets Groups Projects
setup.py 557 B
Newer Older
BRONES Romain's avatar
BRONES Romain committed
#!/usr/bin/env python

from distutils.core import setup

setup(name='FofbTool',
      version='2.2',
      description='Python module to operate and configure SOLEIL FOFB.',
      url='https://gitlab.synchrotron-soleil.fr/dg/fofb/fofbtool',
      license="GNU-GPL-v3",
      author='Romain BRONÈS',
      author_email='romain.brones@synchrotron-soleil.fr',
      packages=['FofbTool',],
      scripts=['scripts/FofbTool',],
      package_data={
          'FofbTool': ['*.cfg'],
          },
      install_requires = ['pytango>=9.2', 'numpy>=1.15'],
     )