Add LICENSE.txt, requirements.txt and update information about setup.py.
This commit is contained in:
parent
5e36ebfc90
commit
be263372e5
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2017 codezjx <code.zjx@gmail.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
24
README.md
24
README.md
|
@ -1 +1,23 @@
|
||||||
TODO
|
License
|
||||||
|
-------
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2017 codezjx <code.zjx@gmail.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
|
@ -0,0 +1,3 @@
|
||||||
|
requests>=2.17.3
|
||||||
|
pycrypto>=2.6.1
|
||||||
|
mutagen>=1.38.0
|
8
setup.py
8
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='netease-cloud-music-dl',
|
name='netease-cloud-music-dl',
|
||||||
version='0.0.1',
|
version='0.2.0',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'requests>=2.17.3',
|
'requests>=2.17.3',
|
||||||
|
@ -17,10 +17,10 @@ setup(
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
license='Apache License V2',
|
license='Mit',
|
||||||
author='codezjx',
|
author='codezjx',
|
||||||
author_email='code.zjx@gmail.com',
|
author_email='code.zjx@gmail.com',
|
||||||
url='https://github.com/codezjx/netease-cloud-music-dl',
|
url='https://github.com/codezjx/netease-cloud-music-dl',
|
||||||
description='Netease cloud music downloader, with full ID3 metadata!',
|
description='Netease cloud music song downloader, with full ID3 metadata!',
|
||||||
keywords=['ncm', 'cloud-music', 'downloader'],
|
keywords=['ncm', 'netease', 'cloud-music', 'downloader'],
|
||||||
)
|
)
|
Loading…
Reference in New Issue