Skip to content

Commit

Permalink
add configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
TimidRobot committed Sep 28, 2022
1 parent 44e0d02 commit 95a07e2
Show file tree
Hide file tree
Showing 4 changed files with 348 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[flake8]
extend-exclude=
.cache/,
.local/,
docs/,
node_modules/,
venv/,
max-line-length = 79
18 changes: 18 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
flickrapi = "*"
numpy = "*"
pandas = "*"
requests = "*"

[dev-packages]
black = "*"
flake8 = "*"
isort = "*"

[requires]
python_version = "3.9"
299 changes: 299 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tool.black]
line-length = 79
target-version = ['py39', 'py310']


# [tool.flake8]
# config: .flake8
# also see: https://github.com/PyCQA/flake8/issues/234


[tool.isort]
import_heading_firstparty = 'First-party/Local'
import_heading_future = 'Future'
import_heading_stdlib = 'Standard library'
import_heading_thirdparty = 'Third-party'
line_length = 79
multi_line_output = 3
no_lines_before = 'LOCALFOLDER'
profile = 'black'


# [tool.pre-commit]
# config: .pre-commit-config.yaml

0 comments on commit 95a07e2

Please sign in to comment.