mirror of
https://github.com/google/pebble.git
synced 2025-03-15 16:51:21 +00:00
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
|
# Copyright 2024 Google LLC
|
||
|
#
|
||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
# you may not use this file except in compliance with the License.
|
||
|
# You may obtain a copy of the License at
|
||
|
#
|
||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
#
|
||
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
# See the License for the specific language governing permissions and
|
||
|
# limitations under the License.
|
||
|
|
||
|
# Always prefer setuptools over distutils
|
||
|
from setuptools import setup, find_packages
|
||
|
# To use a consistent encoding
|
||
|
from codecs import open
|
||
|
from os import path
|
||
|
import sys
|
||
|
|
||
|
here = path.abspath(path.dirname(__file__))
|
||
|
|
||
|
# Get the long description from the README file
|
||
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
||
|
long_description = f.read()
|
||
|
|
||
|
setup(
|
||
|
name='pebble.commander',
|
||
|
version='0.0.11',
|
||
|
description='Pebble Commander',
|
||
|
long_description=long_description,
|
||
|
url='https://github.com/pebble/pebble-commander',
|
||
|
author='Pebble Technology Corporation',
|
||
|
author_email='cory@pebble.com',
|
||
|
|
||
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
||
|
namespace_packages = ['pebble'],
|
||
|
|
||
|
install_requires=[
|
||
|
'pebble.pulse2>=0.0.7,<1',
|
||
|
],
|
||
|
|
||
|
extras_require = {
|
||
|
'Interactive': [
|
||
|
'pebble.loghash>=2.6',
|
||
|
'prompt_toolkit>=0.55',
|
||
|
],
|
||
|
},
|
||
|
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'pebble-commander = pebble.commander.__main__:main [Interactive]',
|
||
|
],
|
||
|
},
|
||
|
)
|