Skip to content

Commit 08dcb97

Browse files
committed
add setup.py
1 parent c2b8c6f commit 08dcb97

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env python
2+
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

Comments
 (0)