-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 857 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "files_com"
version = "1.6.320"
description = "Python bindings for the Files.com API"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.5"
dependencies = [
"requests >= 2.20",
"requests-toolbelt >= 1.0.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*", "doc"]
[tool.setuptools.package-data]
files_sdk = ["../_VERSION", "../README.md"]
[tool.black]
line-length=79
include="files_sdk/"
[tool.pyright]
include=["files_sdk"]
reportMissingTypeArgument=true
reportUnnecessaryCast=true
reportUnnecessaryComparison=true
reportUnnecessaryContains=true
reportUnnecessaryIsInstance=true
# The project currently uses dynamic types
reportGeneralTypeIssues=false