|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools"] |
| 2 | +requires = ["setuptools", "wheel"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | + |
| 6 | +[project] |
| 7 | +name = "linode_api4" |
| 8 | +authors = [{ name = "Linode", email = "[email protected]" }] |
| 9 | +description = "The official Python SDK for Linode API v4" |
| 10 | +readme = "README.rst" |
| 11 | +requires-python = ">=3.8" |
| 12 | +keywords = [ |
| 13 | + "akamai", |
| 14 | + "Akamai Connected Cloud", |
| 15 | + "linode", |
| 16 | + "cloud", |
| 17 | + "SDK", |
| 18 | + "Linode APIv4", |
| 19 | +] |
| 20 | +license = { text = "BSD-3-Clause" } |
| 21 | +classifiers = [ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Topic :: Software Development :: Libraries", |
| 25 | + "License :: OSI Approved :: BSD License", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.8", |
| 29 | + "Programming Language :: Python :: 3.9", |
| 30 | + "Programming Language :: Python :: 3.10", |
| 31 | + "Programming Language :: Python :: 3.11", |
| 32 | + "Programming Language :: Python :: 3.12", |
| 33 | +] |
| 34 | +dependencies = ["requests", "polling"] |
| 35 | +dynamic = ["version"] |
| 36 | + |
| 37 | +[project.optional-dependencies] |
| 38 | +test = ["tox>=4.4.0"] |
| 39 | + |
| 40 | +dev = [ |
| 41 | + "tox>=4.4.0", |
| 42 | + "mock>=5.0.0", |
| 43 | + "pytest>=7.3.1", |
| 44 | + "httpretty>=1.1.4", |
| 45 | + "black>=23.1.0", |
| 46 | + "isort>=5.12.0", |
| 47 | + "autoflake>=2.0.1", |
| 48 | + "pylint", |
| 49 | + "twine>=4.0.2", |
| 50 | + "build>=0.10.0", |
| 51 | + "Sphinx>=6.0.0", |
| 52 | + "sphinx-autobuild>=2021.3.14", |
| 53 | + "sphinxcontrib-fulltoc>=1.2.0", |
| 54 | + "build>=0.10.0", |
| 55 | + "twine>=4.0.2", |
| 56 | +] |
| 57 | + |
| 58 | +[project.urls] |
| 59 | +Homepage = "https://github.com/linode/linode_api4-python" |
| 60 | +Documentation = "https://linode-api4.readthedocs.io/" |
| 61 | +Repository = "https://github.com/linode/linode_api4-python.git" |
| 62 | + |
| 63 | +[tool.setuptools.dynamic] |
| 64 | +version = { attr = "linode_api4.version.__version__" } |
| 65 | + |
| 66 | +[tool.setuptools.packages.find] |
| 67 | +exclude = ['contrib', 'docs', 'test', 'test.*'] |
| 68 | + |
5 | 69 | [tool.isort] |
6 | 70 | profile = "black" |
7 | 71 | line_length = 80 |
|
0 commit comments