-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.16 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
[project]
name = "purjo"
version = "1.0.0a25"
description = "UV based Robot Framework external service task runner for Operaton"
readme = "README.md"
authors = [
{name = "Asko Soukka", email = "[email protected]"},
]
license = {text = "Apache Software License" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.9"
dependencies =[
"typer>=0.15.1",
"operaton-tasks>=1.0.0a5",
"javaobj-py3>=0.4.4",
"tzlocal>=5.2",
"pathspec>=0.12.1",
]
[project.scripts]
pur = "purjo.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/purjo"]
[dependency-groups]
dev = [
"black>=24.10.0",
"flake8>=7.1.1",
"isort>=5.13.2",
"mypy>=1.13.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"robotframework-tidy>=4.16.0",
]
[tool.isort]
force_alphabetical_sort_within_sections = true
force_single_line = true
from_first = true
line_length = 200
lines_after_imports = 2
lines_between_types = 0
no_sections = true