-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.53 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.53 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
40
41
42
43
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).parent
README = (ROOT / "README.md").read_text(encoding="utf-8")
setup(
name="pytorch-training-inspector",
version="0.1.0",
author="Olajide Badejo",
author_email="olajide.badejo@users.noreply.github.com",
description="Production-grade monitoring and anomaly detection for PyTorch training loops",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Olajide-Badejo/PyTorch-Training-Inspector",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"torch>=2.0",
"numpy>=1.21",
"pandas>=1.3",
"plotly>=5.0",
],
extras_require={
"alerts": ["slack-sdk>=3.0"],
"dashboard": ["dash>=2.0"],
"dev": ["pytest>=7.0", "pytest-cov", "black", "isort", "mypy"],
},
project_urls={
"Documentation": "https://github.com/Olajide-Badejo/PyTorch-Training-Inspector/tree/main/docs",
"Source": "https://github.com/Olajide-Badejo/PyTorch-Training-Inspector",
"Issues": "https://github.com/Olajide-Badejo/PyTorch-Training-Inspector/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)