forked from breakdowns/lk21
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 752 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# setup.py generated by flit for tools that don't yet use PEP 517
from distutils.core import setup
packages = ['lk21', 'lk21.extractors', 'lk21.thirdparty']
package_data = {'': ['*']}
install_requires = ['questionary', 'bs4',
'requests', 'requests-cache', 'colorama']
entry_points = {'console_scripts': ['lk21 = lk21.cli:main']}
setup(name='lk21',
version='1.6.4',
description='cari anime dan film subtitle Indonesia',
author='Val',
author_email='apklover76@gmail.com',
url='https://github.com/zevtyardt',
packages=packages,
package_data=package_data,
install_requires=install_requires,
entry_points=entry_points,
python_requires='>=3.8',
)