-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.04 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "githubhero"
version = "0.1.0"
description = "🔍 GitHubHero - Analyze Your GitHub. Be impressed. You rock "
authors = ["Jeff Browning <jeff@craftcoded.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "githubhero" }]
keywords = ["github", "analytics", "fastapi", "streamlit"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
fastapi = "^0.110.0"
uvicorn = "^0.29.0"
httpx = "^0.27.0"
requests = "^2.32.2"
pandas = "^2.2.2"
click = "^8.1.7"
rich = "^13.7.1"
streamlit = "^1.35.0"
python-dotenv = "^1.0.1"
plotly = "^6.1.2"
debugpy = "^1.8.1"
pydantic = "^2.7.1"
pydantic-settings = "^2.2.1"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
pytest-asyncio = "^0.23.5"
black = "^24.4.2"
isort = "^5.13.2"
mypy = "^1.10.0"
pre-commit = "^3.7.0"
[tool.black]
line-length = 88
target-version = ['py310', 'py311', 'py312']
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true