We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b8c6f commit 08dcb97Copy full SHA for 08dcb97
setup.cfg
@@ -0,0 +1,2 @@
1
+[bdist_wheel]
2
+universal=1
setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
3
+from distutils.core import setup
4
5
+setup(name='sensors.py',
6
+ version='2.0',
7
+ description='Python bindings for libsensors3',
8
+ author='Pavel Rojtberg',
9
+ url='https://github.com/paroj/sensors.py',
10
+ py_modules=['sensors'],
11
+ license='LGPLv2',
12
+ long_description=open('README.md').read(),
13
+ long_description_content_type='text/markdown',
14
+)
0 commit comments