blob: e0b91ff5e57a832f53c4c7baf86cbf39c578925e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from setuptools import setup
setup(
name='tangouca', # jeez
version='0.0.1',
author='Matthias Vogelgesang',
author_email='matthias.vogelgesang@kit.edu',
url='http://ufo.kit.edu',
license='(?)',
description='TANGO server for libuca',
long_description='TANGO server for libuca',
scripts=['Uca'],
install_requires=['PyTango', 'tifffile']
)
|