-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (29 loc) · 884 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
29
30
31
32
33
# coding=utf-8
"""RainCloudy setup script."""
from setuptools import setup
def readme():
with open("README.rst") as desc:
return desc.read()
setup(
name="raincloudy",
packages=["raincloudy"],
version="0.0.0",
description="A Python library to communicate with Melnor \
RainCloud Smart Garden Watering Irrigation Timer \
(https://wwww.melnor.com/)",
long_description=readme(),
author="Marcelo Moreira de Mello",
author_email="[email protected]",
url="https://github.com/tchellomello/raincloudy",
license="Apache License 2.0",
include_package_data=True,
install_requires=["requests>=2.0", "beautifulsoup4", "urllib3>=1.22", "html5lib==1.1"],
test_suite="tests",
keywords=[
"garden",
"irrigation",
"melnor",
"rain cloud",
"water",
],
)