-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.07 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.07 KB
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
31
32
33
34
from setuptools import setup, find_packages
setup(
name="gecko_controller",
version="0.7.9",
packages=find_packages(),
package_data={
'gecko_controller': [
'web/templates/*',
'web/static/*',
'as7331.py'
]
},
install_requires=[
'smbus2',
'pillow',
'RPi.GPIO',
'flask',
'adafruit-circuitpython-busdevice'
],
entry_points={
'console_scripts': [
'gecko-controller=gecko_controller.controller:main',
'gecko-web=gecko_controller.web.app:main'
]
},
python_requires='>=3.9',
author="Ian Ross Williams",
author_email="ianrosswilliams@gmail.com",
description="Raspberry Pi-based temperature, light and UV controller for gecko enclosure",
long_description="Automated temperature and light controller for gecko enclosure with OLED display support. "
"Features include temperature and humidity monitoring, light cycle control, "
"heat management, and OLED status display."
)