forked from breezy-team/breezy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (88 loc) · 2.12 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = [
"setuptools>=60",
"setuptools-rust",
"setuptools-gettext",
"cython>=0.29",
]
build-backend = "setuptools.build_meta"
[project]
name = "breezy"
maintainers = [{name = "Breezy Developers", email = "[email protected]"}]
description = "Friendly distributed version control system"
readme = "README.rst"
license = {text = "GNU GPL v2"}
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: C",
"Topic :: Software Development :: Version Control",
]
requires-python = ">=3.7"
dependencies = [
"configobj",
"fastbencode",
"patiencediff",
"merge3",
"dulwich>=0.21.2",
"urllib3>=1.24.1",
"pyyaml",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://www.breezy-vcs.org/"
Download = "https://launchpad.net/brz/+download"
[project.optional-dependencies]
fastimport = ["fastimport"]
git = ["dulwich>=0.21.2"]
launchpad = ["launchpadlib>=1.6.3"]
workspace = ["pyinotify"]
doc = [
"docutils",
"setuptools",
"sphinx",
"sphinx_epytext",
]
pgp = ["gpg"]
github = ["github"]
paramiko = ["paramiko"]
subunit = ["python-subunit"]
dev = [
"testtools",
"testscenarios",
"python-subunit",
"flake8",
]
testing = [
"testtools",
"testscenarios",
"python-subunit",
"dulwich>=0.21.2",
]
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
include = ["breezy*"]
namespaces = false
[tool.setuptools.package-data]
breezy = [
"doc/api/*.txt",
"tests/test_patches_data/*",
"help_topics/en/*.txt",
"tests/ssl_certs/ca.crt",
"tests/ssl_certs/server_without_pass.key",
"tests/ssl_certs/server_with_pass.key",
"tests/ssl_certs/server.crt",
"py.typed",
]
[tool.setuptools.dynamic]
version = {attr = "breezy.__version__"}
[tool.mypy]
ignore_missing_imports = true