maestral/pyproject.toml
dependabot[bot] a154f85112
Bump sphinxext-opengraph from 0.8.2 to 0.9.0
Bumps [sphinxext-opengraph](https://github.com/wpilibsuite/sphinxext-opengraph) from 0.8.2 to 0.9.0.
- [Release notes](https://github.com/wpilibsuite/sphinxext-opengraph/releases)
- [Commits](https://github.com/wpilibsuite/sphinxext-opengraph/compare/v0.8.2...v0.9.0)

---
updated-dependencies:
- dependency-name: sphinxext-opengraph
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-29 16:28:36 +00:00

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.9.10",
"sphinx==7.2.5",
"sphinxext-opengraph==0.9.0",
"sphinx-autoapi==3.0.0",
"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"]