-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
29 lines (27 loc) · 910 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
28
29
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="zoro_dl",
version="1.0.2",
author="aditya76-git",
author_email="[email protected]",
description="ZORO-DL - Download DUAL-AUDIO Multi SUBS Anime from ZORO",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aditya76-git/zoro-dl",
include_package_data=True,
package_data={'zoro_dl': ['static/*']},
project_urls={
"Tracker": "https://github.com/aditya76-git/zoro-dl/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
"requests", "BeautifulSoup4",
],
packages=setuptools.find_packages(),
python_requires=">=3.6",
)