-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
118 lines (100 loc) · 2.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# https://python-poetry.org/docs/pyproject/
[tool.poetry]
name = "compute.decenter-ai"
version = "3.0.0"
description = "Official Decenter Compute"
authors = ["Nasfame <laciferin@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://compute.decenter-ai"
repository = "https://github.com/Decenter-AI/compute.decenter-ai"
documentation = "https://github.com/Decenter-AI/compute.decenter-ai"
keywords = ["ai", "decenter", "ai-infra", "ml-compute"]
packages = []
classifiers = [
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.x",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Your License Here",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
]
[tool.poetry.dependencies]
python = "^3.10,<3.11"
colorama = "^0.4.6"
colored = "^2.2.3"
gtts = ">=2.3.2,<2.4.0"
icecream = "^2.1.3"
joblib = "^1.3.2"
python-dotenv = "1.0.0"
fire = "^0.5.0"
py-cid = "^0.3.0"
ipfs-cid = "^1.0.0"
nbconvert = "^7.8.0"
jupyter = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.0,<7.5.0"
flake8 = "^6.1.0"
pytest-benchmark = "^4.0.0"
flake8-in-file-ignores = "^0.2.2"
pre-commit = "^3.4.0"
[tool.poetry.group.ml.dependencies]
numpy = "^1.25.2"
pandas = "^2.1.0"
requests = ">=2.31.0,<2.32.0"
scikit-learn = "^1.3.0"
matplotlib = "^3.8.0"
ipykernel = "^6.25.2"
beautifulsoup4 = "^4.12.2"
seaborn = "^0.12.2"
spacy = "^3.6.1"
tensorflow = "^2.13.0"
[tool.poetry.group.web3.dependencies]
lighthouseweb3 = "^0.1.4"
[build-system]
# requires = ["python>=3.10", "setuptools", "wheel"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
[tool.poetry.extras]
dev = ['pytest']
ml = [
"numpy",
"pandas",
"scikit-learn",
"matplotlib",
"seaborn",
"tensorflow",
"keras",
"pytorch",
"spacy",
]
# A list of all of the optional dependencies, some of which are included in the
# poetry install --extras
# poetry install --all-extras
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Decenter-AI/compute.decenter-ai/issues"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''