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" }
116classifiers = [" Programming Language :: Python :: 3" ]
127dependencies = [" requests" , ' importlib-metadata; python_version>"3.7"' ]
8+ description = " Better tools for managing crypto data."
139dynamic = [" 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 ]
1616pdf = [" ReportLab>=1.2" , " RXP" ]
@@ -23,10 +23,6 @@ cli-name = "better_crypto.better_crypto:bot"
2323exclude_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?$'
3026exclude = '''
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
5150default_section = " LOCALFOLDER"
52- include_trailing_comma = true
51+ ensure_newline_before_comments = true
52+ float_to_top = true
53+ force_grid_wrap = 0
5354force_single_line = true
54- use_parentheses = true
55- sections = [" FUTURE" , " STDLIB" , " THIRDPARTY" , " FIRSTPARTY" , " LOCALFOLDER" ]
55+ include_trailing_comma = true
5656known_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
6865line_length = 80
66+ lines_after_imports = 2
67+ multi_line_output = 3
6968profile = " 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 = " "
7375name = " better_crypto"
7476version = " 0.1.0"
75- description = " "
76- authors = []
7777
7878[tool .poetry .dependencies ]
7979python = " ^3.8.5"
8080python-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 }
8984flake8 = " ^3.8.5"
90- mypy = " ^0.910"
9185isort = " ^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 ]
9494include-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