Mercurial > personal > weatherlog
comparison setup.py @ 7:357079c3c150
add pip packaging metadata.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sat, 28 Sep 2019 20:09:29 -0400 |
parents | |
children | a47bf21e89bf |
comparison
equal
deleted
inserted
replaced
6:8a350ec1aa78 | 7:357079c3c150 |
---|---|
1 import setuptools | |
2 | |
3 setuptools.setup( | |
4 name='rpi-temperature-logger', | |
5 version='0.0.1', | |
6 packages=['weatherlog'], | |
7 python_requires='>=3.7', | |
8 install_requires=[ | |
9 'Adafruit-Blinka', | |
10 'Adafruit_CircuitPython_DHT', | |
11 'attrs', | |
12 'pymongo', | |
13 'pytz', | |
14 ], | |
15 ) |