diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3480374 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a2d89b7 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='sensors.py', + version='2.0', + description='Python bindings for libsensors3', + author='Pavel Rojtberg', + url='https://github.com/paroj/sensors.py', + py_modules=['sensors'], + license='LGPLv2', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', +) \ No newline at end of file