forked from ptcryan/hydrawiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 1.13 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
""" Hydrawiser setup script """
from setuptools import setup
setup(
name='Hydrawiser',
packages=['hydrawiser'],
version='0.2',
description='A Python library to communicate with Hunter ' +
'Wi-Fi irrigation controllers ' +
'(https://www.hunter.com) that support the ' +
'Hydrawise application (https://www.hydrawise.com).',
author='David Ryan',
author_email='[email protected]',
url='https://github.com/ptcryan/hydrawiser',
license='MIT',
include_package_data=True,
install_requires=['requests>=2.0'],
platforms='any',
test_suite='tests',
keywords=[
'sprinkler',
'water',
'irrigation',
'Hunter',
'Hydrawise'
],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)