forked from openswarm-eu/swarmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.4 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
[build-system]
requires = [
"hatchling>=1.4.1",
]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"swarmake/*.py",
"swarmake/swarmake.toml",
]
exclude = [ "*.pyc" ]
[tool.hatch.build.targets.sdist]
include = [
"swarmake/*.py",
"swarmake/swarmake.toml"
]
exclude = [ "*.pyc" ]
[tool.hatch.build.targets.wheel]
include = [
"swarmake/*.py",
"swarmake/swarmake.toml"
]
exclude = [ "*.pyc" ]
[project]
name = "swarmake"
version = "0.1.4"
authors = [
{ name="Geovane Fedrecheski", email="[email protected]" },
]
dependencies = [
"click == 8.1.7",
"rich == 13.8.1",
"structlog == 24.4.0",
"tqdm == 4.66.5",
"toml == 0.10.2",
]
description = "The OpenSwarm Implementation."
readme = "README.md"
license = { text="BSD" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
"Homepage" = "https://github.com/openswarm-eu/swarmake"
"Bug Tracker" = "https://github.com/openswarm-eu/swarmake/issues"
[project.scripts]
swarmake = "swarmake.main:main"
[tool.ruff]
select = ["E", "F"]
line-length = 88
ignore = ["E501"]
[tool.isort]
multi_line_output = 3 # Use Vertical Hanging Indent
profile = "black"