-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (31 loc) · 1.01 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
import setuptools
import os
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="scrape_it",
DATA_DIR = os.path.join(sys.prefix,
"local/lib/python3.6/dist-packages", "scrape_it"),
version="0.3.7",
py_modules=["scrape_it"],
author="Valentyna Fihurska",
author_email="[email protected]",
description="Systemitized tool for scraping",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/erelin6613/Scrape_it",
license='Apache License 2.0',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
],
install_requires=["requests", "tqdm", "numpy", "nltk",
"address-parser", "beautifulsoup4",
"bs4", "lxml", "nltk",
"phonenumbers", "pyap", "regex",
"selenium", "tldextract"],
python_requires='>=3.5',
)