Skip to content

Commit

Permalink
🔧 Add pyproject.toml and setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and nanpuhaha committed Dec 18, 2022
1 parent bd2b6ea commit 8fba170
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[project]
name = "level2_dataannotation_cv-level2-cv-17"
description = "부스트캠프 AI Tech 4기 / Level 2 CV 17조 / Sixth Sense 팀의 데이터 제작 프로젝트"
version = "0.1.0"
authors = [
{ name = "서장원_T4105", email = "[email protected]" },
{ name = "박세준_T4105", email = "[email protected]" },
{ name = "박선규_T4105", email = "[email protected]" },
{ name = "조태환_T4105", email = "[email protected]" },
{ name = "장국빈_T4105", email = "[email protected]" },
{ name = "이광민_T4105", email = "[email protected]" },
]
dependencies = ["pyspark[ml]", "sklearn"]

[project.optional-dependencies]
dev = ["tox", "pre-commit", "bump2version"]

[tool.black]
line_length = 88
color = true
target-version = ['py37']

[tool.isort]
profile = "black"
py_version = 37
atomic = true
float_to_top = true
color_output = true

[tool.autoflake]
check = true
imports = ["django", "requests", "urllib3"]
8 changes: 8 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[flake8]
# Recommend matching the black line length (default 88),
# rather than using the flake8 default of 79:
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
black-config = pyproject.toml

0 comments on commit 8fba170

Please sign in to comment.