mirror of
https://github.com/weewx/weewx.git
synced 2026-05-19 07:15:18 -04:00
21 lines
526 B
Plaintext
21 lines
526 B
Plaintext
# Required packages when installing using pip.
|
|
|
|
configobj
|
|
pyserial
|
|
pyusb
|
|
|
|
# Cheetah or Cheetah3, depending on Python version
|
|
Cheetah; python_version < '3.0'
|
|
Cheetah3; python_version >= '3.0'
|
|
|
|
# Python 2.7 requires an older version of Pillow.
|
|
Pillow==5.1; python_version < '3.0'
|
|
# Python 3.x can use a current version.
|
|
Pillow; python_version >= '3.0'
|
|
|
|
# Ephem is optional, you can comment this line if you don't intent to use it
|
|
pyephem
|
|
|
|
# MySQL is optional, you can comment this line if you don't intent to use it
|
|
mysqlclient
|