-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (45 loc) · 1.11 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
48
49
50
51
52
53
54
55
[project]
name = "pycareer"
description = "PyCareer - Daily Python Jobs in Your Terminal!"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Tadas Gedgaudas", email = "[email protected]" },
]
dynamic = ["version"]
[project.urls]
Homepage = "https://pycareer.io"
Documentation = "https://github.com/tadasgedgaudas/pycareer/README.md"
Repository = "https://github.com/tadasgedgaudas/pycareer"
[tool.poetry]
name = "pycareer"
version = "0.1.6"
description = ""
authors = ["Tadas Gedgaudas <[email protected]>"]
readme = "README.md"
packages = [{include = "pycareer"}]
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.9.0"
rich = "^13.4.2"
aiohttp = "^3.8.4"
pydantic = "^1.10.9"
structlog = "^23.1.0"
[tool.poetry.dev-dependencies]
black = "~23.3.0"
mypy = "~1.4.0"
pylint = "~2.17.0"
isort = "~5.12.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.poetry.scripts]
pycareer = "pycareer.cli:main"
[tool.hatch.version]
path = "pycareer/__init__.py"
[build-system]
requires = ["hatchling >= 1.7.0"]
build-backend = "hatchling.build"