mirror of
https://github.com/google/pebble.git
synced 2025-05-24 12:14:53 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
26
third_party/pbl/pblconvert/setup.py
vendored
Normal file
26
third_party/pbl/pblconvert/setup.py
vendored
Normal 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',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue