-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
50 lines (46 loc) · 1.35 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
build = "docker build -f Dockerfile.prod --platform linux/amd64 -t smare ."
dev = "docker build -f Dockerfile.dev --platform linux/amd64 -t smare ."
stop = "docker rm -f smarecontainer"
start = "docker run --name smarecontainer -d smare:latest"
exec = "docker exec -it smarecontainer"
craigslist = "pipenv run exec python3 -c 'import orchestrator; orchestrator.craigslist()'"
facebook = "pipenv run exec python3 -c 'import orchestrator; orchestrator.facebook()'"
clean = "pipenv run exec python3 -c 'import orchestrator; orchestrator.clean()'"
model = "pipenv run exec python3 -c 'import orchestrator; orchestrator.model()'"
cl_app = "pipenv run exec python3 -c 'import orchestrator; orchestrator.smare_craigslist()'"
fb_app = "pipenv run exec python3 -c 'import orchestrator; orchestrator.smare_facebook()'"
kbb = "pipenv run exec python3 -c 'import orchestrator; orchestrator.kbb()'"
[packages]
selenium = "*"
bs4 = "*"
pymongo = "*"
typer = "*"
python-dotenv = "*"
requests = "*"
pandas = "*"
imblearn = "*"
fuzzywuzzy = "*"
loguru = "*"
openai = "*"
urllib3 = "*"
sendgrid = "*"
jupyter = "*"
missingno = "*"
plotly = "*"
emoji = "*"
textblob = "*"
nltk = "*"
[dev-packages]
isort = "*"
black = "*"
flake8 = "*"
mypy = "*"
pylint = "*"
ipykernel = "*"
[requires]
python_version = "3.11"