Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 3, 2023
1 parent f5c8f4c commit ff33511
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[build-system]
requires = ["setuptools", "setuptools-scm"] #["poetry-core>=1.0.0"]
build-backend = "setuptools.build_meta" #"poetry.core.masonry.api"
build-backend = "setuptools.build_meta" # "poetry.core.masonry.api"
requires = ["setuptools", "setuptools-scm"] # ["poetry-core>=1.0.0"]

[project]
name = "better_crypto"
description = "Better tools for managing crypto data."
requires-python = ">=3.8"
keywords = ["crypto", "data"]
license = { text = "MIT License" }
classifiers = ["Programming Language :: Python :: 3"]
dependencies = ["requests", 'importlib-metadata; python_version>"3.7"']
description = "Better tools for managing crypto data."
dynamic = ["version", "readme"]
keywords = ["crypto", "data"]
license = {text = "MIT License"}
name = "better_crypto"
requires-python = ">=3.8"

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

[tool.black]
line-length = 80
skip-string-normalization = false
skip-magic-trailing-comma = true
include = '\.pyi?$'
exclude = '''
(
Expand All @@ -45,57 +41,61 @@ exclude = '''
| .coveragerc
)
'''
include = '\.pyi?$'
line-length = 80
skip-magic-trailing-comma = true
skip-string-normalization = false

[tool.isort]
ensure_newline_before_comments = true
default_section = "LOCALFOLDER"
include_trailing_comma = true
ensure_newline_before_comments = true
float_to_top = true
force_grid_wrap = 0
force_single_line = true
use_parentheses = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
known_third_party = [
"numpy",
"pandas",
"keras",
"tensorflow",
"sklearn",
"matplotlib",
"scipy",
"scipy"
]
multi_line_output = 3
lines_after_imports = 2
force_grid_wrap = 0
line_length = 80
lines_after_imports = 2
multi_line_output = 3
profile = "black"
float_to_top = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
use_parentheses = true

[tool.poetry]
authors = []
description = ""
name = "better_crypto"
version = "0.1.0"
description = ""
authors = []

[tool.poetry.dependencies]
python = "^3.8.5"
python-dotenv = "^0.18.0"

[tool.poetry.dev-dependencies]
black = { version = "^21.6b0", allow-prereleases = true }
python = "^3.8.5"
pytest-cov = "^2.12.1"
pre-commit = "^2.13.0"
pytest = "^5.2"
ptpython = "^3.0.19"
black = {version = "^21.6b0", allow-prereleases = true}
flake8 = "^3.8.5"
mypy = "^0.910"
isort = "^5.9.2"
mypy = "^0.910"
pre-commit = "^2.13.0"
ptpython = "^3.0.19"
pytest = "^5.2"
pytest-cov = "^2.12.1"
python = "^3.8.5"

[tool.setuptools]
include-package-data = true

[tool.setuptools.dynamic]
version = { attr = "better_crypto.VERSION" }
readme = { file = ["README.rst", "USAGE.rst"] }
readme = {file = ["README.rst", "USAGE.rst"]}
version = {attr = "better_crypto.VERSION"}

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

0 comments on commit ff33511

Please sign in to comment.