-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (29 loc) · 852 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (29 loc) · 852 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''Setup for smartthings_cli'''
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
with open('README.md') as readme_file:
README = readme_file.read()
setup(
name="smartthings_cli",
version="1.0",
author="Richard L. Lynch",
author_email="rich@richlynch.com",
description=("Command line interface to query and control SmartThings devices"),
long_description=README,
license="Apache 2.0",
keywords="smartthings cli automation",
url="https://github.com/rllynch/smartthings_cli",
packages=['smartthings_cli'],
include_package_data=True,
entry_points={
'console_scripts': ['smartthings_cli = smartthings_cli.smartthings_cli:main'],
},
install_requires=[
'twisted',
'requests',
'future'
]
)