-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
35 lines (31 loc) · 1.23 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
__author__ = 'katharine'
from setuptools import setup, find_packages
from pkg_resources import resource_string
requirements_str = resource_string(__name__, 'requirements.txt')
requirements = [line.strip() for line in requirements_str.splitlines()]
__version__= None # Overwritten by executing version.py.
with open('pypkjs/version.py') as f:
exec(f.read())
setup(name='pypkjs',
version=__version__,
description='A Pebble phone app simulator written in Python',
url='https://github.com/pebble/pypkjs',
author='Pebble Technology Corporation',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=requirements,
package_data={
'pypkjs.javascript.navigator': ['GeoLiteCity.dat'],
'pypkjs.PyV8.darwin64': ['_PyV8.so'],
'pypkjs.PyV8.linux32': ['_PyV8.so'],
'pypkjs.PyV8.linux64': ['_PyV8.so', 'libboost_python.so.1.53.0', 'libboost_system-mt.so.1.53.0',
'libboost_thread-mt.so.1.53.0'],
'pypkjs.timeline': ['layouts.json'],
},
entry_points={
'console_scripts': [
'pypkjs=pypkjs.runner.websocket:run_tool'
],
},
zip_safe=False)