-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
pyproject.toml
62 lines (56 loc) · 1.45 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
[project]
name = "frappe-bench"
description = "CLI to manage Multi-tenant deployments for Frappe apps"
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.8"
authors = [
{ name = "Frappe Technologies Pvt Ltd", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Installation/Setup",
]
dependencies = [
"Click>=7.0",
"GitPython~=3.1.30",
"honcho",
"Jinja2~=3.1.3",
"python-crontab~=2.6.0",
"requests",
"semantic-version~=2.10.0",
"setuptools>40.9.0",
"tomli;python_version<'3.11'",
]
dynamic = [
"version",
]
[project.scripts]
bench = "bench.cli:cli"
[project.urls]
Changelog = "https://github.com/frappe/bench/releases"
Documentation = "https://frappeframework.com/docs/user/en/bench"
Homepage = "https://frappe.io/bench"
Source = "https://github.com/frappe/bench"
[build-system]
requires = [
"hatchling>=1.6.0,<=1.21.0",
]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "bench/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/bench"
]
[tool.hatch.build.targets.wheel]
include = [
"/bench"
]