forked from Parth-Vader/MobOff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 784 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 784 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
27
28
29
import os
from setuptools import setup
from setuptools import find_packages
setup(
name='MobOff',
version='0.2.2',
py_modules=['moboff'],
packages=find_packages(),
description = 'Download youtube music and send to devices',
author = 'Parth Verma',
author_email = 'vermaparth97@gmail.com',
url = "https://github.com/parth-vader/MobOff",
download_url = 'https://codeload.github.com/Parth-Vader/MobOff/tar.gz/0.2.2',
license = "MIT License",
install_requires=[
'pushbullet.py',
'youtube_dl',
'Click',
],
entry_points='''
[console_scripts]
moboff=moboff:cli
''',
)
os.system('chmod a+x moboff.py')
os.system('export PATH=moboff.py:$PATH')