-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (77 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
91 lines (77 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aisp"
version = "0.5.4"
authors = [
{ name="João Paulo da Silva Barros", email="jpsilvabarr@gmail.com" },
]
maintainers = [
{ name="Alison Zille Lopes", email="alisonzille@gmail.com"},
]
description = "Package with techniques of artificial immune systems."
readme = "README.md"
requires-python = ">= 3.10"
license = "LGPL-3.0-only"
license-files = ["LICENSE"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.22.4",
"numba>=0.59.0",
"scipy>=1.8.1",
"tqdm>=4.64.1",
]
keywords = [
"Artificial Immune Systems",
"classification",
"Natural computing",
"machine learning",
"artificial intelligence",
"AIS"
]
[project.urls]
Homepage = "https://ais-package.github.io/"
Documentation = "https://ais-package.github.io/docs/intro"
"Source Code" = "https://github.com/AIS-Package/aisp"
Tracker = "https://github.com/AIS-Package/aisp/issues"
[project.optional-dependencies]
dev = [
"build>=1.2.2.post1",
"ipykernel>=6.29.5",
"twine>=5.1.1",
"pytest>=8.3.5",
]
[tool.setuptools]
packages = { find = { exclude = [
"*test*",
"*tests",
"*tests/*",
".venv",
".idea",
".vscode",
"docs"
]}}
[tool.pylint]
good-names = ["X", "N"]
disable = [
"R0902",
"R0917",
"R0801",
"R0914",
"R0903"
]
max-args = 15
[tool.pydocstyle]
convention = "numpy"
add-ignore = ["D104", "D107"]