Skip to content

Commit 22b7688

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9394880 commit 22b7688

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

pyproject.toml

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[build-system]
2-
requires = ["setuptools", "setuptools-scm"] #["poetry-core>=1.0.0"]
3-
build-backend = "setuptools.build_meta" #"poetry.core.masonry.api"
2+
build-backend = "setuptools.build_meta" # "poetry.core.masonry.api"
3+
requires = ["setuptools", "setuptools-scm"] # ["poetry-core>=1.0.0"]
44

55
[project]
6-
name = "better_crypto"
7-
description = "Better tools for managing crypto data."
8-
requires-python = ">=3.8"
9-
keywords = ["crypto", "data"]
10-
license = { text = "MIT License" }
116
classifiers = ["Programming Language :: Python :: 3"]
127
dependencies = ["requests", 'importlib-metadata; python_version>"3.7"']
8+
description = "Better tools for managing crypto data."
139
dynamic = ["version", "readme"]
10+
keywords = ["crypto", "data"]
11+
license = {text = "MIT License"}
12+
name = "better_crypto"
13+
requires-python = ">=3.8"
1414

1515
[project.optional-dependencies]
1616
pdf = ["ReportLab>=1.2", "RXP"]
@@ -23,10 +23,6 @@ cli-name = "better_crypto.better_crypto:bot"
2323
exclude_dirs = ["tests", "dydx/dydx/main/tests"]
2424

2525
[tool.black]
26-
line-length = 80
27-
skip-string-normalization = false
28-
skip-magic-trailing-comma = true
29-
include = '\.pyi?$'
3026
exclude = '''
3127
3228
(
@@ -45,57 +41,61 @@ exclude = '''
4541
| .coveragerc
4642
)
4743
'''
44+
include = '\.pyi?$'
45+
line-length = 80
46+
skip-magic-trailing-comma = true
47+
skip-string-normalization = false
4848

4949
[tool.isort]
50-
ensure_newline_before_comments = true
5150
default_section = "LOCALFOLDER"
52-
include_trailing_comma = true
51+
ensure_newline_before_comments = true
52+
float_to_top = true
53+
force_grid_wrap = 0
5354
force_single_line = true
54-
use_parentheses = true
55-
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
55+
include_trailing_comma = true
5656
known_third_party = [
5757
"numpy",
5858
"pandas",
5959
"keras",
6060
"tensorflow",
6161
"sklearn",
6262
"matplotlib",
63-
"scipy",
63+
"scipy"
6464
]
65-
multi_line_output = 3
66-
lines_after_imports = 2
67-
force_grid_wrap = 0
6865
line_length = 80
66+
lines_after_imports = 2
67+
multi_line_output = 3
6968
profile = "black"
70-
float_to_top = true
69+
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
70+
use_parentheses = true
7171

7272
[tool.poetry]
73+
authors = []
74+
description = ""
7375
name = "better_crypto"
7476
version = "0.1.0"
75-
description = ""
76-
authors = []
7777

7878
[tool.poetry.dependencies]
7979
python = "^3.8.5"
8080
python-dotenv = "^0.18.0"
8181

8282
[tool.poetry.dev-dependencies]
83-
black = { version = "^21.6b0", allow-prereleases = true }
84-
python = "^3.8.5"
85-
pytest-cov = "^2.12.1"
86-
pre-commit = "^2.13.0"
87-
pytest = "^5.2"
88-
ptpython = "^3.0.19"
83+
black = {version = "^21.6b0", allow-prereleases = true}
8984
flake8 = "^3.8.5"
90-
mypy = "^0.910"
9185
isort = "^5.9.2"
86+
mypy = "^0.910"
87+
pre-commit = "^2.13.0"
88+
ptpython = "^3.0.19"
89+
pytest = "^5.2"
90+
pytest-cov = "^2.12.1"
91+
python = "^3.8.5"
9292

9393
[tool.setuptools]
9494
include-package-data = true
9595

9696
[tool.setuptools.dynamic]
97-
version = { attr = "better_crypto.VERSION" }
98-
readme = { file = ["README.rst", "USAGE.rst"] }
97+
readme = {file = ["README.rst", "USAGE.rst"]}
98+
version = {attr = "better_crypto.VERSION"}
9999

100100
[tool.setuptools.packages]
101-
find = {} # Scan the project directory with the default parameters
101+
find = {} # Scan the project directory with the default parameters

0 commit comments

Comments
 (0)