forked from scottmelhop/PowerBI-API-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "pbiapi"
version = "0.1.5"
description = "A Python library for working with the Power BI API"
authors = ["Scott Melhop <scott.melhop@cognite.com>"]
repository = "https://github.com/scottmelhop/PowerBI-API-Python"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.black]
line-length = 120
target_version = ['py37']
include = '\.py$'
[tool.isort]
line_length=120 # corresponds to -w flag
multi_line_output=3 # corresponds to -m flag
include_trailing_comma=true # corresponds to -tc flag
skip_glob = '^((?!py$).)*$' # this makes sort all Python files
known_third_party = ["arrow", "autoimpute", "cognite", "cvxpy", "fancyimpute", "matplotlib", "numpy", "pandas", "pomegranate", "pykalman", "pymc3", "pytest", "ruptures", "scipy", "sklearn", "theano", "torch"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.23.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^4.3.21"
mypy = "^0.761"
flake8 = "^3.7.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"