-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 1.19 KB
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
from setuptools import setup, find_packages
VERSION = "2.0.0"
DESCRIPTION = """
The largest crowdsourced global database of quality of life data, including housing indicators, perceived crime rates, healthcare quality, transportation quality, and other statistics, is [Numbeo](https://www.numbeo.com/). In order to save time when searching for information about the quality of life in a particular country or city, the project's goal is to use web scraping frameworks (in this case, the BeautifulSoup4 library) to extract data from Numbeo's website.
"""
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
install_requires = f.read()
setup(
name="Numbeo Scraper",
version=VERSION,
author="Rafael Greca Vieira",
author_email="me@rgrecav.com",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=["src"]),
install_requires=install_requires,
test_suite="tests",
keywords=[
"python",
"scraper",
"web scraping",
"numbeo",
],
python_requires=">=3.10",
)