forked from mikeshi80/phablet-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 863 Bytes
/
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
#!/usr/bin/python
from setuptools import find_packages
from setuptools import setup
setup(
name='phablet-tools',
version='0.1.2013080603',
description='Scripts to deploy Ubuntu on mobile devices',
long_description=open('README.md').read(),
author='Sergio Schvezov',
author_email='[email protected]',
maintainer='Mike Shi',
maintainer_email='[email protected]',
url='https://github.com/mikeshi80/phablet-tools',
license='GPLv3',
platforms=['Windows', 'Linux', 'Mac OSX'],
packages=find_packages(exclude=("tests",)),
install_requires=['requests', 'configobj'],
scripts=['phablet-flash',
'phablet-demo-setup',
'phablet-network-setup',
'phablet-dev-bootstrap',
'phablet-test-run',
'repo',
],
test_suite='tests',
)