-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.01 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.01 KB
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
from setuptools import find_packages, setup
setup(
name="edgetrain",
version="0.2.0",
packages=find_packages(),
install_requires=[
"psutil>=5.0.0",
"GPUtil>=1.4.0",
"matplotlib>=3.7.0",
"pandas>=1.5.0",
"pynvml>=8.0.0",
"tensorflow==2.12.0",
"keras==2.12.0",
"tensorflow-model-optimization==0.7.3",
"jupyter",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"pytest-mock",
"pre-commit",
"black",
"black[jupyter]",
"flake8",
"isort",
]
},
description="A utility for machine learning training with limited resources.",
author="Bradley Edelman",
author_email="bjedelma@gmail.com",
url="https://github.com/BradleyEdelman/edgetrain",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)