forked from noaione/yuu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (39 loc) · 1.1 KB
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
import setuptools
from yuu.common import __version__
with open('README.md', 'r') as f:
desc = f.read()
setuptools.setup(
name = 'yuu',
version = __version__,
description = 'Yuu - A simple AbemaTV video downloader',
long_description = desc,
long_description_content_type = "text/markdown",
author = 'noaione',
author_email = 'noaione0809@gmail.com',
keywords = [
'ripping',
'downloader',
'parser'
],
license = 'BSD-3-Clause',
url = 'https://github.com/noaione/yuu',
packages = setuptools.find_packages(),
install_requires = [
'requests[socks]',
'm3u8',
'tqdm',
'pycryptodome',
'click'
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
entry_points = {
'console_scripts': ['yuu=yuu.command:cli']
}
)