-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
62 lines (54 loc) · 1.61 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"build"
]
build-backend = "setuptools.build_meta"
[project]
name = "spade"
dynamic = ["version", "dependencies"]
description = "Smart Python Agent Development Environment"
authors = [{ name = "Javi Palanca" }]
maintainers = [{ name = "Javi Palanca" }]
license = {text = "MIT"}
readme = "README.rst"
keywords = ["spade"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: XMPP"
]
[project.urls]
Homepage = "https://github.com/javipalanca/spade"
Repository = "https://github.com/javipalanca/spade"
[project.scripts]
spade = "spade.cli:cli"
[tool.setuptools]
packages = ["spade"]
[tool.setuptools.dynamic]
version = {attr = "spade.__version__"}
dependencies = {file = "requirements.txt"}
[tool.ruff]
lint.select = ["E", "F"]
lint.ignore = ["E501"]
line-length = 88
target-version = "py38"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
[tool.ruff.lint.isort]
known-first-party = ["spade"]