forked from DeepSourceCorp/good-first-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 699 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 699 Bytes
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
[project]
name = "good-first-issue"
version = "0.1.0"
description = "https://goodfirstissue.dev"
license = "MIT"
authors = [
{name = "Sanket Saurav", email = "sanket@deepsource.io"}
]
requires-python = ">=3.9"
dependencies = [
"github3.py>=4.0.1",
"toml>=0.10.2",
"numerize>=0.12",
"emoji>=0.6.0",
"requests>=2.23.0",
"python-slugify>=4.0.1",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.8",
"types-toml>=0.10.8.7",
"types-python-slugify>=8.0.0.3",
"loguru>=0.7.2",
"mypy>=1.7.1",
]
[tool.hatch.build.targets.wheel]
packages = ["gfi"]
[tool.ruff]
line-length = 120
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"