-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1.01 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "icse-unleash"
description = "UNLEASH: Semantic-based Log Parser with Pre-trained Language Models"
license = {file = "LICENSE"}
dynamic = ["version", "dependencies"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
homepage = "https://github.com/LogIntelligence/UNLEASH"
issues = "https://github.com/LogIntelligence/UNLEASH/issues"
[tool.setuptools.dynamic]
version = {attr = "unleash.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
unleash = "unleash"
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''