forked from SeanDaBlack/KelloggBot
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (42 loc) · 1.22 KB
/
pyproject.toml
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
[tool.poetry]
name = "autoscab"
version = "0.3.2"
description = "apply for many of the same job"
authors = ["sneakers-the-rat"]
license = "unlicense"
packages = [
{ include = "autoscab" }
]
include = ['autoscab/constants/uscities.csv']
readme = "README.md"
homepage = "https://github.com/sneakers-the-rat/autoscab"
repository = "https://github.com/sneakers-the-rat/autoscab"
keywords = ['solidarity', 'forever']
[tool.poetry.dependencies]
python = ">=3.7.1,<4"
certifi = "^2021.10.8"
charset-normalizer = "^2.0.9"
idna = "^3.3"
requests = "^2.26.0"
selenium = "^4"
urllib3 = "^1.26.7"
Faker = "^10.0.0"
webdriver-manager = "^3.5.2"
fpdf = "^1.7.2"
pdf2image = "^1.16.0"
SpeechRecognition = "^3.8.1"
pydub = "^0.25.1"
pandas = "^1.3.5"
typing-extensions = {version="^4.0.1", python="<3.8" }
importlib-metadata = {version = "^4.9.0", python = "<3.8"}
pytest = {version = "^6.2.5", optional = true}
pytest-cov = {version = "^3.0.0", optional = true}
coveralls = {version = "^3.3.1", optional = true}
[tool.poetry.extras]
tests = ["pytest", "pytest-cov", "coveralls"]
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
autoscab = 'autoscab.main:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"