-
Notifications
You must be signed in to change notification settings - Fork 329
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (65 loc) · 1.98 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=77", "setuptools-scm>=8,<9"]
build-backend = "setuptools.build_meta"
[project]
name = "dropbox"
dynamic = ["version"]
description = "Official Dropbox API Client"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Dropbox", email = "dev-platform@dropbox.com" }]
dependencies = [
"requests>=2.16.2",
"stone>=3.5.3,<4",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "http://www.dropbox.com/developers"
Source = "https://github.com/dropbox/dropbox-sdk-python"
[project.optional-dependencies]
test = ["pytest", "mock", "pytest-mock", "coverage", "stone>=3.5.3,<4"]
docs = ["sphinx", "sphinx_rtd_theme"]
dev = ["flake8", "twine", "wheel", "build"]
[tool.setuptools]
packages = ["dropbox"]
zip-safe = false
[tool.setuptools_scm]
version_file = "dropbox/_version.py"
parentdir_prefix_version = "dropbox-"
[tool.pytest.ini_options]
norecursedirs = [".tox", ".venv", ".venv-*", "stone"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
ignore = [
"E301",
"E302",
"E305",
"E402",
]
[tool.ruff.lint.per-file-ignores]
"dropbox/stone_base.py" = ["F401", "F403"]
"dropbox/stone_validators.py" = ["F401", "F403"]
"dropbox/stone_serializers.py" = ["F401", "F403"]
[tool.ruff.format]
quote-style = "double"
line-ending = "auto"
exclude = [
"dropbox/",
]