Skip to content

Commit

Permalink
add buildozer.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
tito committed Dec 19, 2012
1 parent b49c80b commit a8f4055
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions buildozer.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[app]

# title of the application
title = Kivy Remote Shell

# package name
package.name = remoteshell

# package domain (mostly used for android/ios package)
package.domain = org.kivy

# indicate where the source code is living
source.dir = .
source.include_exts = py,png

# search the version information into the source code
version.regex = __version__ = '(.*)'
version.filename = %(source.dir)s/main.py

# requirements of the app
requirements = pycrypto,pyasn1,pyjnius,twisted,kivy

# android specific
android.permissions = INTERNET

2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = '0.1'

# install_twisted_rector must be called before importing and using the reactor
from kivy.support import install_twisted_reactor
install_twisted_reactor()
Expand Down

0 comments on commit a8f4055

Please sign in to comment.