forked from NoMore201/playmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 773 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
29
from setuptools import setup
setup(name='playmaker',
version='0.6.4',
description='Apk manager with web interface based on googleplay-api',
url='https://github.com/NoMore201/playmaker',
author='NoMore201',
author_email='[email protected]',
license='MIT',
packages=['playmaker'],
package_data={
'playmaker': [
'index.html',
'static/*',
'static/css/*',
'static/fonts/*',
'static/js/*',
'views/*'
],
},
install_requires=[
'pyaxmlparser',
'pycryptodome',
'tornado<5',
'gpapi>=0.4.4',
'tornado-crontab'
],
scripts=['pm-server']
)