forked from hhursev/recipe-scrapers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.26 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
32
33
34
35
36
37
38
import os
from setuptools import find_packages, setup
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(
os.path.join(here, "recipe_scrapers", "__version__.py"), "r", encoding="utf-8"
) as f:
exec(f.read(), about)
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="recipe_scrapers",
url="https://github.com/hhursev/recipe-scrapers/",
version=about["__version__"],
author="Hristo Harsev",
author_email="[email protected]",
description="Python package, scraping recipes from all over the internet",
keywords="python recipes scraper harvest recipe-scraper recipe-scrapers",
long_description=README,
long_description_content_type="text/x-rst",
install_requires=["beautifulsoup4>=4.10.0", "extruct>=0.8.0", "requests>=2.19.1"],
packages=find_packages(),
package_data={"": ["LICENSE"]},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
],
python_requires=">=3.6",
)