-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (42 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "HGCS"
dynamic = ["version"]
description = "HGCS package"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "FaHui Lin , Harvester group", email = "[email protected]" },
]
dependencies = [
'htcondor >= 10.3.0',
]
[project.optional-dependencies]
atlasgrid = ['htcondor >= 10.3.0']
[project.urls]
Homepage = "https://github.com/PanDAWMS/HGCS"
[tool.hatch.version]
path = "pkg_info.py"
pattern = "release_version = \"(?P<version>[^\"]+)\""
[tool.hatch.build]
directory = "dist"
[tool.hatch.build.targets.wheel]
packages = ["lib/hgcs"]
[tool.hatch.build.targets.wheel.shared-data]
"temp/hgcs.cfg.template" = "etc/hgcs/hgcs.cfg.template"
"temp/hgcs.service.template" = "etc/systemd/system/hgcs.service.template"
"temp/logrotate-hgcs" = "etc/logrotate.d/logrotate-hgcs"
"bin" = "bin"
[tool.hatch.build.targets.sdist]
exclude = [
".github",
".idea",
]
[tool.black]
line-length=160
[tool.isort]
profile = "black"
[tool.flynt]
line-length = 160