Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
paroj committed Nov 18, 2022
1 parent c2b8c6f commit 08dcb97
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
)

0 comments on commit 08dcb97

Please sign in to comment.