-
Notifications
You must be signed in to change notification settings - Fork 187
/
pyproject.toml
103 lines (85 loc) · 2.85 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
97
98
99
100
101
102
103
[build-system]
requires = ['setuptools>=74']
build-backend = 'setuptools.build_meta'
[project]
name = 'RBTools'
description = 'Command line tools and API for working with code and document reviews on Review Board'
authors = [
{name = 'Beanbag, Inc.', email = '[email protected]' },
]
license = { text = 'MIT' }
readme = 'README.md'
requires-python = '>=3.8'
dynamic = ['version']
dependencies = [
'certifi>=2023.5.7',
'colorama',
'housekeeping~=1.1',
'packaging>=21.3',
'puremagic',
'pydiffx~=1.1.0',
'texttable',
'typing_extensions>=4.3.0',
'tqdm',
# importlib.metadata compatibility import.
#
# 5.0 is equivalent to importlib.metadata in Python 3.12.
'importlib-metadata>=5.0',
# importlib.resources compatibility import.
#
# 5.9 is equivalent to importlib.resources in Python 3.12.
'importlib-resources>=5.9',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: Review Board',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
'Topic :: Software Development :: Quality Assurance',
]
[project.urls]
homepage = 'https://www.reviewboard.org/downloads/rbtools/'
documentation = 'https://www.reviewboard.org/docs/rbtools/'
repository = 'https://github.com/reviewboard/rbtools'
[project.scripts]
rbt = 'rbtools.commands.main:main'
[project.entry-points."rbtools_commands"]
alias = 'rbtools.commands.alias:Alias'
api-get = 'rbtools.commands.api_get:APIGet'
attach = 'rbtools.commands.attach:Attach'
clear-cache = 'rbtools.commands.clearcache:ClearCache'
close = 'rbtools.commands.close:Close'
diff = 'rbtools.commands.diff:Diff'
info = 'rbtools.commands.info:Info'
land = 'rbtools.commands.land:Land'
list-repo-types = 'rbtools.commands.list_repo_types:ListRepoTypes'
login = 'rbtools.commands.login:Login'
logout = 'rbtools.commands.logout:Logout'
patch = 'rbtools.commands.patch:PatchCommand'
post = 'rbtools.commands.post:Post'
publish = 'rbtools.commands.publish:Publish'
review = 'rbtools.commands.review:Review'
setup-completion = 'rbtools.commands.setup_completion:SetupCompletion'
setup-repo = 'rbtools.commands.setup_repo:SetupRepo'
stamp = 'rbtools.commands.stamp:Stamp'
status = 'rbtools.commands.status:Status'
status-update = 'rbtools.commands.status_update:StatusUpdate'
[tool.setuptools.package-data]
rbtools = ['py.typed']
[tool.setuptools.packages.find]
where = ['.']
include = ['rbtools*']
namespaces = false
[tool.setuptools.dynamic]
version = { attr = 'rbtools.__version__' }