-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.21 KB
/
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
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='music2storage',
version='0.2.1',
description='Downloads music from a service and stores it in a cloud or local storage.',
long_description='Currently the only music services are Youtube and Soundcloud, and the only storages are Google Drive and Local Storage. Dropbox is planned to be added soon.',
url='https://github.com/Music-Moo/music2storage',
author='Radu Raicea',
author_email='[email protected]',
license='GPLv3',
packages=['music2storage'],
install_requires=[
'ffmpy',
'google-api-python-client',
'pytube',
'requests',
'tqdm',
'soundcloud'
],
include_package_data=True,
python_requires=">=3.6",
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
])