Skip to content

Commit 9cb6e1d

Browse files
update setup file
1 parent 307c3d2 commit 9cb6e1d

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This version introduces a **refined adaptive training strategy with a constant p
3838
You can install the latest version of EdgeTrain via pip:
3939

4040
```bash
41-
pip install https://github.com/BradleyEdelman/EdgeTrain/releases/download/v0.2.0-alpha/edgetrain-0.2.0.tar.gz
41+
pip install https://github.com/BradleyEdelman/EdgeTrain/releases/download/v0.2.0/edgetrain-0.2.0.tar.gz
4242
```
4343

4444
Alternatively, clone the repository and install manually:
@@ -103,7 +103,7 @@ EdgeTrain/
103103
104104
├── .github/workflows/
105105
│ ├── ci.yml
106-
│ └──lint.yml
106+
│ └── lint.yml
107107
108108
├── .flake8
109109
├── .gitignore

setup.py

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,29 @@
22

33
setup(
44
name="edgetrain",
5-
version="0.1.1-alpha",
5+
version="0.2.0",
66
packages=find_packages(),
77
install_requires=[
8-
"tensorflow>=2.0.0",
98
"psutil>=5.0.0",
109
"GPUtil>=1.4.0",
1110
"matplotlib>=3.7.0",
1211
"pandas>=1.5.0",
13-
"numpy>=1.24.0",
1412
"pynvml>=8.0.0",
15-
"torch>=2.5.1",
13+
"tensorflow==2.12.0",
14+
"keras==2.12.0",
15+
"tensorflow-model-optimization==0.7.3",
16+
"jupyter",
1617
],
1718
extras_require={
1819
"dev": [
19-
"pytest", # for testing
20+
"pytest",
21+
"pytest-cov",
22+
"pytest-mock",
23+
"pre-commit",
24+
"black",
25+
"black[jupyter]",
26+
"flake8",
27+
"isort",
2028
]
2129
},
2230
description="A utility for machine learning training with limited resources.",

0 commit comments

Comments
 (0)