forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py.template
More file actions
26 lines (25 loc) · 740 Bytes
/
setup.py.template
File metadata and controls
26 lines (25 loc) · 740 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
from distutils.core import setup
setup(
name='cefpython1', # No spaces here, so that it works with deb packages.
version='%(APP_VERSION)s',
description='Python bindings for the Chromium Embedded Framework',
license='BSD 3-Clause',
author='Czarek Tomczak',
author_email='czarek.tomczak@gmail.com',
url='http://code.google.com/p/cefpython/',
packages=['cefpython1', 'cefpython1.wx'],
package_data={'cefpython1': [
'examples/*.py',
'examples/*.html',
'examples/wx/*.py',
'examples/wx/*.html',
'examples/wx/*.png',
'locales/*.pak',
'wx/*.txt',
'wx/images/*.png',
'*.txt',
'cefclient',
'*.so',
'*.pak',
]}
)