mirror of
https://github.com/samschott/maestral.git
synced 2024-11-13 13:48:37 +03:00
f352f2ce4c
Bumps [furo](https://github.com/pradyunsg/furo) from 2023.8.17 to 2023.8.19. - [Release notes](https://github.com/pradyunsg/furo/releases) - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md) - [Commits](https://github.com/pradyunsg/furo/compare/2023.08.17...2023.08.19) --- updated-dependencies: - dependency-name: furo dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
104 lines
2.4 KiB
TOML
104 lines
2.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.2", "build"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "maestral"
|
|
version = "1.8.1.dev0"
|
|
authors = [{name = "Sam Schott", email = "sam.schott@outlook.com"}]
|
|
license = {text = "MIT"}
|
|
description = "Open-source Dropbox client for macOS and Linux."
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: Unix",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
]
|
|
urls = {Homepage = "https://maestral.app"}
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"click>=8.0.2",
|
|
"desktop-notifier>=3.3.0",
|
|
"dropbox>=11.28.0,<12.0",
|
|
"fasteners>=0.15",
|
|
"keyring>=22",
|
|
"keyrings.alt>=3.1.0",
|
|
"packaging",
|
|
"pathspec>=0.5.8",
|
|
"Pyro5>=5.10",
|
|
"requests>=2.16.2",
|
|
"rich",
|
|
"rubicon-objc>=0.4.1;sys_platform=='darwin'",
|
|
"setuptools",
|
|
"survey>=4.0,<5.0",
|
|
"typing_extensions",
|
|
"watchdog>=2.0.1",
|
|
]
|
|
|
|
[project.readme]
|
|
file = "README.md"
|
|
content-type = "text/markdown"
|
|
|
|
[project.optional-dependencies]
|
|
gui = [
|
|
"maestral-qt>=1.8.1.dev0;sys_platform=='linux'",
|
|
"maestral-cocoa>=1.8.1.dev0;sys_platform=='darwin'",
|
|
]
|
|
syslog = ["systemd-python"]
|
|
lint = [
|
|
"black",
|
|
"flake8",
|
|
"flake8-pyproject",
|
|
"mypy",
|
|
"pyupgrade",
|
|
"types-pkg_resources",
|
|
"types-requests",
|
|
]
|
|
test = [
|
|
"pytest",
|
|
"pytest-benchmark",
|
|
"pytest-cov",
|
|
"pytest-rerunfailures",
|
|
]
|
|
docs = [
|
|
"furo==2023.8.19",
|
|
"sphinx==7.2.3",
|
|
"sphinxext-opengraph==0.8.2",
|
|
"sphinx-autoapi==2.1.1",
|
|
"sphinx-mdinclude==0.5.3",
|
|
]
|
|
dev = [
|
|
"bump2version",
|
|
"maestral[lint,test]",
|
|
]
|
|
|
|
[project.scripts]
|
|
maestral = "maestral.cli:main"
|
|
|
|
[tool.setuptools.data-files]
|
|
"share/icons/hicolor/512x512/apps" = ["src/maestral/resources/maestral.png"]
|
|
|
|
[tool.flake8]
|
|
ignore = "E203,E501,W503,H306"
|
|
statistics = "True"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.8"
|
|
strict = true
|
|
# Disable some strict flags because of untyped dependencies:
|
|
disallow_subclassing_any = false
|
|
disallow_untyped_calls = false
|
|
warn_return_any = false
|
|
ignore_missing_imports = true
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ["py38", "py39", "py310", "py311"]
|