-
-
Notifications
You must be signed in to change notification settings - Fork 270
/
setup.py
42 lines (38 loc) · 1.1 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
38
39
40
41
42
'''
Function:
setup the musicdl
Author:
Charles
微信公众号:
Charles的皮卡丘
GitHub:
https://github.com/CharlesPikachu
'''
import musicdl
from setuptools import setup, find_packages
'''readme'''
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
'''setup'''
setup(
name=musicdl.__title__,
version=musicdl.__version__,
description=musicdl.__description__,
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Operating System :: OS Independent'
],
author=musicdl.__author__,
url=musicdl.__url__,
author_email=musicdl.__email__,
license=musicdl.__license__,
include_package_data=True,
entry_points={'console_scripts': ['musicdl = musicdl.musicdl:musicdlcmd']},
install_requires=[lab.strip('\n') for lab in list(open('requirements.txt', 'r').readlines())],
zip_safe=True,
packages=find_packages()
)