-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
78 lines (75 loc) · 2.55 KB
/
Copy pathsetup.py
File metadata and controls
78 lines (75 loc) · 2.55 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
setup(
name="business-address-scraper",
version="1.0.0",
author="Edgar Zorrilla",
description="A web scraper for extracting business information from New York",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/business-address-scraper",
packages=find_packages(exclude=["tests*", "scripts*"]),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
install_requires=requirements,
extras_require={
'dev': [
'pytest>=7.0',
'pytest-cov>=4.0',
'black>=22.0',
'isort>=5.0',
'mypy>=1.0',
'flake8>=6.0',
'pre-commit>=3.0',
],
'test': [
'pytest>=7.0',
'pytest-cov>=4.0',
'pytest-mock>=3.0',
'responses>=0.23',
],
'ai': [
'torch>=2.1.2',
'transformers>=4.37.2',
'llama-cpp-python>=0.2.23',
'PyQt5>=5.15.11',
'PyQt5-sip>=12.17.0',
'PyQt5-Qt5>=5.15.16',
'PyQtWebKit>=5.15.6'
]
},
entry_points={
'console_scripts': [
'run-scraper=scraper.run_scraper:main',
'setup-scraper=scripts.setup:main',
'check-prod=scripts.check_prod_config:main',
'deploy-scraper=scripts.deploy:main'
],
},
package_data={
'scraper': [
'config/*.yaml',
'config/*.json',
'data/templates/*.html',
'data/static/css/*.css',
'data/static/js/*.js'
]
},
include_package_data=True,
zip_safe=False,
)