-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 835 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name='pmsensor',
version='0.5',
description='Library to read data from environment ensors',
url='https://github.com/open-homeautomation/pmsensor',
author='Daniel Matuschek',
author_email='daniel@matuschek.net',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
packages=find_packages(),
install_requires=['pyserial>=3'],
keywords='serial pm2.5 pm1.0 pm10 co2',
zip_safe=False)