-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
79 lines (73 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ai_workshop"
description = "A collection of AI tools, tips, and training. This package is intended for educational purposes."
authors = [
{ name = "Austin Hester", email = "ahester57@gmail.com" },
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.3",
"Framework :: Jupyter",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Education"
]
requires-python = ">=3.8"
dependencies = [
"keras>=3.3.3,<4",
"matplotlib>=3.8.4,<4",
"networkx>=3.3,<4",
"numpy>=1.26.4,<2",
"pandas>=2.2.2,<3",
"pyarrow>=16.0.0,<17",
"scikit-learn>=1.4.2,<2",
"scipy>=1.13.0,<2",
"seaborn>=0.13.2,<1",
"tensorflow>=2.16.1,<3",
"tomli==2.0.1; python_version<'3.11'",
]
dynamic = ["version", "readme"]
[project.urls]
"Homepage" = "https://github.com/ahester57/ai_workshop"
[project.scripts]
aiw = "ai_workshop.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.4.4,<8"
]
jupyter = [
"notebook>=7.1.3,<8"
]
latex = [
# for nbconvert to generate LaTeX/PDFs (also requires local TeX installation)
"pandoc>=2.3,<3"
]
shap = [
"shap>=0.45.0,<1" # for explainability
]
torch = [
# may need to use `pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121`
"torch>=2.3.0,<3", # +cu121
"torchvision>=0.18.0,<1" # +cu121
]
[tool.setuptools.dynamic]
version = {attr = "ai_workshop.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["src"]