blob: 51ee7f44ead683138e22bf70f3f06d61defcf58b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cgitize"
description = "Self-host your repositories using cgit"
license = {text = "MIT"}
dynamic = ["version"]
authors = [{name = "Egor Tensin", email = "Egor.Tensin@gmail.com"}]
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"atlassian-python-api ~= 3.28.0",
'importlib-metadata ~= 4.0 ; python_version < "3.8"',
"PyGithub ~= 1.0",
"python-gitlab ~= 2.0",
"tomli ~= 1.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
]
[project.urls]
"Homepage" = "https://github.com/egor-tensin/cgitize"
"Bug Tracker" = "https://github.com/egor-tensin/cgitize/issues"
[project.scripts]
cgitize = "cgitize.main:main"
[tool.setuptools]
packages = ["cgitize"]
[tool.setuptools_scm]
|