-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (27 loc) · 883 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name="Si7021",
version="0.1.1",
description="Driver for the Si7021 humidity and temperature sensor",
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Hardware',
'Topic :: Software Development :: Embedded Systems',
],
url="https://github.com/herm/Si7021",
author="Hermann Kraus",
author_email="[email protected]",
license="MIT",
packages=["si7021"],
zip_safe=True
)