|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=77.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "dropbox" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Official Dropbox API Client" |
| 9 | +readme = { file = "README.rst", content-type = "text/x-rst" } |
| 10 | +requires-python = ">=3.11" |
| 11 | +license = "MIT" |
| 12 | +license-files = ["LICENSE"] |
| 13 | +authors = [{ name = "Dropbox", email = "dev-platform@dropbox.com" }] |
| 14 | +dependencies = [ |
| 15 | + "requests>=2.16.2", |
| 16 | + "stone>=3.4.0,<4", |
| 17 | +] |
| 18 | +classifiers = [ |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "Operating System :: OS Independent", |
| 22 | + "Programming Language :: Python", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.13", |
| 27 | + "Programming Language :: Python :: Implementation :: CPython", |
| 28 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 29 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 30 | +] |
| 31 | + |
| 32 | +[project.urls] |
| 33 | +Homepage = "http://www.dropbox.com/developers" |
| 34 | +Source = "https://github.com/dropbox/dropbox-sdk-python" |
| 35 | + |
| 36 | +[project.optional-dependencies] |
| 37 | +test = ["pytest", "mock", "pytest-mock", "coverage", "stone>=3.4.0,<4"] |
| 38 | +docs = ["sphinx", "sphinx_rtd_theme"] |
| 39 | +dev = ["flake8", "twine", "wheel", "build"] |
| 40 | + |
| 41 | +[tool.setuptools] |
| 42 | +packages = ["dropbox"] |
| 43 | +zip-safe = false |
| 44 | + |
| 45 | +[tool.setuptools.dynamic] |
| 46 | +version = { attr = "dropbox.dropbox_client.__version__" } |
| 47 | + |
| 48 | +[tool.pytest.ini_options] |
| 49 | +norecursedirs = [".tox", ".venv", ".venv-*", "stone"] |
0 commit comments