forked from Harkame/YggTorrentScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 775 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="yggtorrentscraper",
version="1.2.12",
author="Harkame",
description="Scraper for YggTorrent",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Harkame/YggTorrentDownloader",
install_requires=[
"BeautifulSoup4 >= 4.8.1",
"lxml >= 4.4.1",
"requests >= 2.22.0",
"selenium==3.141.0",
],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
)