-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
94 lines (86 loc) · 2.07 KB
/
pyproject.toml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "PyDrive2"
description = "Google Drive API made easy. Maintained fork of PyDrive."
readme = "README.rst"
authors = [
{name = "JunYoung Gwak", email = "[email protected]"},
]
maintainers = [
{name = "DVC team", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
"google-api-python-client>=1.12.5",
"oauth2client>=4.0.0",
"PyYAML>=3.0",
# https://github.com/iterative/PyDrive2/issues/361
"cryptography<44",
"pyOpenSSL>=19.1.0,<=24.2.1",
]
license = {text = "Apache License 2.0"}
dynamic = ["version"]
[project.urls]
Documentation = "https://docs.iterative.ai/PyDrive2"
Source = "https://github.com/iterative/PyDrive2"
Changelog = "https://github.com/iterative/PyDrive2/releases"
[project.optional-dependencies]
fsspec = [
"fsspec>=2021.07.0",
"tqdm>=4.0.0",
"funcy>=1.14",
"appdirs>=1.4.3",
]
tests = [
"pytest>=4.6.0",
"timeout-decorator",
"funcy>=1.14",
"flake8",
"flake8-docstrings",
"pytest-mock",
"pyinstaller",
"importlib_resources<6; python_version < '3.10'",
"black==24.10.0",
]
[project.entry-points.pyinstaller40]
hook-dirs = "pydrive2.__pyinstaller:get_hook_dirs"
tests = "pydrive2.__pyinstaller:get_PyInstaller_tests"
[tool.setuptools]
packages=[
"pydrive2",
"pydrive2.test",
"pydrive2.fs",
"pydrive2.__pyinstaller",
]
[tool.setuptools_scm]
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
markers = [
"manual: mark tests to be runnable only in local environment and require user manual actions.",
]