Import of the watch repository from Pebble

This commit is contained in:
Matthieu Jeanson 2024-12-12 16:43:03 -08:00 committed by Katharine Berry
commit 3b92768480
10334 changed files with 2564465 additions and 0 deletions

26
third_party/pbl/pblconvert/setup.py vendored Normal file
View file

@ -0,0 +1,26 @@
from setuptools import setup, find_packages
__version__= None # Overwritten by executing version.py.
with open('pblconvert/version.py') as f:
exec(f.read())
requires = [
'lxml==3.4.4',
'cairosvg',
'mock',
'Pillow',
]
setup(name='pblconvert',
version=__version__,
description='Tools to convert files into valid Pebble resources',
long_description=open('README.rst').read(),
url='https://github.com/pebble/pblconvert',
author='Pebble Technology Corporation',
license='MIT',
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'': ['bin/*']},
entry_points={'console_scripts': ['pblconvert = pblconvert.pblconvert:main']},
install_requires=requires,
test_suite='nose.collector',
)