-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (65 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mlexperiments"
version = "0.0.1"
authors = [
{ name="Erick Merino", email="erickfmm@gmail.com" },
]
maintainers = [
{ name="Erick Merino", email="erickfmm@gmail.com" },
]
description = "A bunch of ML Experiments"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
keywords = [
"machinelearning", "load-data"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scikit-learn",
"matplotlib",
"pandas",
"seaborn",
"scipy",
"tensorflow",
"keras",
"tensorflow-datasets==4.9.2",
"nltk",
"gensim",
"spacy",
"wordcloud",
"pyldavis",
"beautifulsoup4",
"opencv-python",
"tqdm",
"pyedflib",
"pywavelets",
"librosa",
"pyemd",
"pims",
"mnist",
"Pillow",
"pymongo",
"PyYAML",
"pypng",
"pydot",
"FuzzyTM",
"opendatasets"
]
[project.optional-dependencies]
test = [
"bertopic"
]
[project.urls]
"Homepage" = "https://github.com/erickfmm/ML-experiments"
"Bug Tracker" = "https://github.com/erickfmm/ML-experiments/issues"
[tool.hatch.build]
sources = ["src"]