-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (40 loc) · 1.06 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
from setuptools import setup, find_packages
description = """
Simple interface to Raspberry Pi Plantpot Greenhouse add-on board
"""
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="rpi-greenhouse",
version="0.4.1",
author="Ben Nuttall",
author_email="[email protected]",
description=description.strip(),
long_description=read('README.rst'),
license="BSD",
keywords=[
"raspberry pi",
"greenhouse",
"garden",
"plant",
"sensor",
],
url="https://github.com/bennuttall/rpi-greenhouse",
packages=find_packages(),
scripts=[
'scripts/greenhouse-logger',
'scripts/greenhouse-indicator',
'scripts/greenhouse-clear-db',
],
install_requires=[
"RPi.GPIO",
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Topic :: Home Automation",
"Topic :: Education",
"License :: OSI Approved :: BSD License",
],
)