-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (73 loc) · 1.7 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
80
81
82
83
84
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pytools"
version = "0.0.1"
authors = [
{name = "Alexander Rodis", email = "alexanderrhodis@gmail.com"},
]
maintainers = [
{name = "Alexander Rodis", email = "alexanderrhodis@gmail.com"}
]
description = "A compilation of tools and utility code for data analysis and machine learning to facilitate reusability"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"data", "analysis", "science", "tools",
"bayesian", "inference", "statistics",
"machine", "learning"
]
license = {text="Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS independent",
"Development Status :: 4 - Beta"
]
dependencies = [
"pymc>=5.6",
"plotly>=5.15",
"matplotlib>=3.7",
"scikit-learn>=1.3.0",
"umap-learn>=0.5",
"seaborn>=0.12",
"screeninfo>=0.8",
"bayesian-models",
]
[project.optional-dependencies]
DEV = [
"GPy",
"sphinx",
"sphinx-rtd-theme",
"pytest",
"jax[cuda12_pip]",
"numpyro",
"myst-parser",
]
CPU = [
'jax[cpu]',
'numpyro'
]
GPU11 = [
'jax[cuda11_pip]',
'numpyro',
]
GPU12 = [
'jax[cuda12_pip]',
'numpyro',
]
TPU = [
'jax[tpu]',
'numpyro',
]
[project.urls]
Homepage = "https://github.com/AlexRodis/pytools"
"Bug Tracker" = "https://github.com/AlexRodis/pytools/issues"
Documentation = "https://readthedocs.org/projects/pytools"
Repository = "https://github.com/AlexRodis/pytools"
Changelog = "https://github.com/AlexRodis/pytools/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ['src']
include = ['pytools']
exclude = ['tests.*']
namespaces = false