|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools", "setuptools-scm"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "python-gitlab" |
| 7 | +dynamic = ["version", "readme"] |
| 8 | +description = "Interact with GitLab API" |
| 9 | +authors = [ |
| 10 | + { name="Gauvain Pocentek", email="gauvain@pocentek.net" }, |
| 11 | + { name="Max Wittig", email="max.wittig@siemens.com" }, |
| 12 | + { name="Nejc Habjan", email="nejc.habjan@siemens.com" }, |
| 13 | + { name="Roger Meier", email="r.meier@siemens.com" }, |
| 14 | + { name="John L. Villalovos", email="john@sodarock.com" }, |
| 15 | +] |
| 16 | +license = {text = "LGPL-3.0-or-later"} |
| 17 | +dependencies = ["requests>=2.25.0", "requests-toolbelt>=0.10.1"] |
| 18 | +requires-python = ">=3.7.0" |
| 19 | + |
| 20 | +classifiers = [ |
| 21 | + "Development Status :: 5 - Production/Stable", |
| 22 | + "Environment :: Console", |
| 23 | + "Intended Audience :: System Administrators", |
| 24 | + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", |
| 25 | + "Natural Language :: English", |
| 26 | + "Operating System :: POSIX", |
| 27 | + "Operating System :: Microsoft :: Windows", |
| 28 | + "Programming Language :: Python", |
| 29 | + "Programming Language :: Python :: 3", |
| 30 | + "Programming Language :: Python :: 3.7", |
| 31 | + "Programming Language :: Python :: 3.8", |
| 32 | + "Programming Language :: Python :: 3.9", |
| 33 | + "Programming Language :: Python :: 3.10", |
| 34 | + "Programming Language :: Python :: 3.11", |
| 35 | +] |
| 36 | + |
| 37 | +[project.optional-dependencies] |
| 38 | +autocompletion = ["argcomplete>=1.10.0,<3"] |
| 39 | +yaml = ["PyYaml>=5.2"] |
| 40 | + |
| 41 | +[tool.setuptools] |
| 42 | +license-files = ["COPYING", "AUTHORS"] |
| 43 | + |
| 44 | +[tool.setuptools.package-data] |
| 45 | +gitlab = ["py.typed"] |
| 46 | + |
| 47 | +[tool.setuptools.dynamic] |
| 48 | +version = {attr = "gitlab.._version.__version__"} |
| 49 | +readme = {file = ["README.rst"]} |
| 50 | + |
| 51 | +[tool.setuptools.packages.find] |
| 52 | +exclude = ["docs*", "tests*"] |
| 53 | + |
| 54 | +[project.scripts] |
| 55 | +gitlab = "gitlab.cli:main" |
| 56 | + |
| 57 | +[project.urls] |
| 58 | +"Homepage" = "https://github.com/python-gitlab/python-gitlab" |
| 59 | +"Bug Tracker" = "https://github.com/python-gitlab/python-gitlab/issues" |
| 60 | + |
1 | 61 | [tool.isort]
|
2 | 62 | profile = "black"
|
3 | 63 | multi_line_output = 3
|
|
0 commit comments