ScottzillaSystems commited on
Commit
cf520c9
·
verified ·
1 Parent(s): 8760c42

Upload setup.py

Browse files
Files changed (1) hide show
  1. setup.py +33 -0
setup.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="self-healing-training",
5
+ version="1.0.0",
6
+ description="Fully autonomous self-healing layer for Hugging Face TRL trainers",
7
+ long_description=open("README.md").read(),
8
+ long_description_content_type="text/markdown",
9
+ author="Autonomous ML Intern",
10
+ url="https://huggingface.co/ScottzillaSystems/self-healing-training",
11
+ packages=find_packages(),
12
+ python_requires=">=3.9",
13
+ install_requires=[
14
+ "torch>=2.0.0",
15
+ "transformers>=4.40.0",
16
+ "trl>=0.9.0",
17
+ ],
18
+ extras_require={
19
+ "trackio": ["trackio"],
20
+ "dev": ["pytest", "pytest-cov", "black", "ruff"],
21
+ },
22
+ classifiers=[
23
+ "Development Status :: 4 - Beta",
24
+ "Intended Audience :: Science/Research",
25
+ "License :: OSI Approved :: MIT License",
26
+ "Programming Language :: Python :: 3",
27
+ "Programming Language :: Python :: 3.9",
28
+ "Programming Language :: Python :: 3.10",
29
+ "Programming Language :: Python :: 3.11",
30
+ "Programming Language :: Python :: 3.12",
31
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
32
+ ],
33
+ )