-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (26 loc) · 931 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="xvideos_api",
version="1.4.2",
packages=find_packages(),
install_requires=[
"requests", "bs4", "lxml", "ffmpeg-progress-yield", "eaf_base_api", "json5"
],
entry_points={
'console_scripts': ['xvideos_api=xvideos_api.xvideos_api:main'
# If you want to create any executable scripts
],
},
author="Johannes Habel",
author_email="[email protected]",
description="A Python API for the Porn Site xvideos.com",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license="LGPLv3",
url="https://github.com/EchterAlsFake/xvideos_api",
classifiers=[
# Classifiers help users find your project on PyPI
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
],
)