-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.03 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='requestez',
version='0.1.4',
author='shashstormer',
description='A simpler interface for scraping with some basic parsing, aes encryption decryption and some logging utils.',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
'requests', "m3u8", "pycryptodome", "yarl", "regex", "beautifulsoup4", "dbdictionary",
],
extras_require={
"optional": ["moviepy[optional]", "js2xml", "xmltodict"]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries',
'Topic :: Internet :: WWW/HTTP',
],
project_urls={
'GitHub': 'https://github.com/shashstormer/requestez',
},
)