-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.82 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ResPredAI"
description = "Antimicrobial Resistance predictions via AI models"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Ettore Rocchi", email = "ettore.rocchi3@unibo.it"},
]
maintainers = [
{name = "Ettore Rocchi", email = "ettore.rocchi3@unibo.it"},
]
keywords = [
"machine-learning",
"antimicrobial-resistance"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"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",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.scripts]
respredai = "respredai.cli:main"
[tool.setuptools.dynamic]
version = {attr = "respredai.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["dev-requirements.txt"]}, docs = {file = ["docs-requirements.txt"]}}
[project.urls]
"Homepage" = "https://github.com/EttoreRocchi/ResPredAI"
"Bug Reports" = "https://github.com/EttoreRocchi/ResPredAI/issues"
"Source" = "https://github.com/EttoreRocchi/ResPredAI"
"Documentation" = "https://ettorerocchi.github.io/ResPredAI/"
[tool.setuptools.packages.find]
where = ["."]
include = ["respredai*"]
exclude = ["docs*", "example*"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]