We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd62f69 commit 45237b9Copy full SHA for 45237b9
.gitignore
@@ -7,7 +7,10 @@ __pycache__/
7
8
# Distribution / packaging
9
.Python
10
-env/
+/env*/
11
+/.env*/
12
+/venv*/
13
+/.venv*/
14
build/
15
develop-eggs/
16
dist/
pyproject.toml
@@ -0,0 +1,23 @@
1
+[build-system]
2
+requires = ["setuptools>=30.3.0", "wheel"]
3
+
4
+[tool.black]
5
+## Also `.gitignore` is sourced.
6
+exclude = '''
+ /(
+ \.eggs
+ |\.git
+ |\.hg
+ |\.mypy_cache
+ |\.pytype
+ |\.nox
+ |\.tox
+ |build
+ |_build
17
+ |buck-out
18
+ |dist
19
+ |.vscode/.+
20
+ )/ | (
21
+ \..*cache.*
22
+ )
23
+'''
0 commit comments