-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 716 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 716 Bytes
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
from setuptools import setup, find_packages
setup(
name="dental_scraper",
version="0.1",
packages=find_packages(),
install_requires=[
"scrapy>=2.11.0",
"beautifulsoup4>=4.12.3",
"lxml>=5.1.0",
"selenium>=4.18.1",
"fake-useragent>=1.4.0",
"pdfplumber>=0.10.3",
"PyPDF2>=3.0.1",
"pandas>=2.2.0",
"numpy>=1.26.3",
"pymongo>=4.6.1",
"loguru>=0.7.2",
],
extras_require={
"test": [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.5",
"pytest-mock>=3.12.0",
],
"docs": [
"Sphinx>=7.2.6",
"sphinx-rtd-theme>=2.0.0",
],
},
)