This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (63 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mopi"
version = "0.0.1"
authors = [
{ name="Mark Szulyovszky", email="mark.szulyovszky@gmail.com" },
{ name="Daniel Szemerey", email="daniel@szemerey.eu" },
]
description = "Modular Pipelines (mopi) let's you create and manage Machine Learning pipelines with ease."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"tqdm",
"pyarrow>=3.0",
"python-dotenv",
"swifter",
"joblib",
"pycaleva @ https://github.com/itchingpixels/pycaleva/archive/patch-1.zip",
# -- Below are modules that are endpoints or blocks that can be used. --
"nltk",
"transformers",
"datasets",
"scikit-learn",
"spacy",
"imbalanced-learn",
# "huggingface_hub",
# "isort",
# "URLExtract",
# "emoji>=2.0.0",
# "autocorrect",
# "spello",
# "perspective",
# "pytorch-lightning",
# "scipy",
# "tensorboard",
# -- Currently required to be installed by the user --
# "torch",
# "wandb",
# -- Dev Dependencies --
# "pyright",
# "black",
# "ipython",
# "notebook",
# "ipykernel",
# "pydeps",
# "pytest",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
"Homepage" = "https://github.com/applied-exploration/modular-pipelines"
"Bug Tracker" = "https://github.com/applied-exploration/modular-pipelines/issues"