-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 845 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
from setuptools import setup
setup(
name="rpi-weather-display",
version="1.1",
url="https://github.com/FutureSharks/rpi-weather-display",
license="GPL v3",
description="A weather display using e-ink screen and a Raspberry Pi",
long_description=open("README.md", encoding="utf-8").read(),
include_package_data=True,
packages=[
"rpi_weather_display",
"rpi_weather_display/providers",
],
entry_points={
"console_scripts": ["rpi-weather-display=rpi_weather_display.cmd:main"],
},
install_requires=[
"pyowm==3.1.1",
"scipy>=1.1.0",
"Pillow>=7.1.2",
"pandas>=0.23",
"matplotlib>=3.0.2",
"requests==2.28.1",
"IT8951 @ git+https://github.com/GregDMeyer/IT8951@a22e39299647a9e6d6299c64ff158cc6e2a96cd1#egg=IT8951",
],
)