Skip to content

Commit 1027140

Browse files
committed
Added initial setup.py and LICENSE
1 parent 8f73f85 commit 1027140

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
from setuptools import setup
3+
4+
setup(name='python-for-android',
5+
version='0.1',
6+
description='Android APK packager for Python scripts and apps',
7+
author='Alexander Taylor',
8+
author_email='[email protected]',
9+
url='https://github.com/inclement/p4a-experiment/',
10+
license='MIT',
11+
packages=['pythonforandroid'],
12+
install_requires=['appdirs', 'colorama', 'sh'],
13+
)
14+

0 commit comments

Comments
 (0)