-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.19 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
#
# According to PEP-518, https://www.python.org/dev/peps/pep-0518/
#
[project]
name = "headfirst_design_pattern"
version = "0.1.0"
description="A repository for implementations related to design pattern projects by CLUE team members"
requires-python = ">=3.8"
authors = [
{name = "Donghyun Kim", email = "[email protected]"},
{name = "Gangmin Kim", email = "[email protected]"},
{name = "Jonghyuk Lee", email = "[email protected]"},
{name = "Junhyeok Yang", email = "[email protected]"},
{name = "Kyunghyun Lim", email = "[email protected]"},
{name = "Seyoung Kim", email = "[email protected]"},
]
readme = "README.md"
urls = {Documentation = "https://github.com/Team-CLUE/headfirst_design_pattern", Codes = "https://github.com/Team-CLUE/headfirst_design_pattern"}
[build-system]
# Minimum requirements for the build system to execute, according to PEP-508
requires = [
"build>=0.7",
"setuptools>=59.4",
"wheel>=0.37"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 105
target-version = ["py38"]
exclude = ""
[tool.isort]
profile = "black"
skip_gitignore = true
extend_skip_glob = ""