Allows us to track ambient temperature changes and estimate the temperature delta between the server room and exterior temperature. We should be able to predict when we would need to stop the machines due to excesive temperature as summer approaches. Reviewed-by: Aleix Boné <abonerib@bsc.es>
12 lines
263 B
Python
12 lines
263 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name='meteocat-exporter',
|
|
version='1.0',
|
|
# Modules to import from other scripts:
|
|
packages=find_packages(),
|
|
# Executables
|
|
scripts=["meteocat-exporter"],
|
|
)
|