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