JAGPREET SINGH commited on
Commit
1593f66
1 Parent(s): eff05df
mlops.egg-info/PKG-INFO ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ Metadata-Version: 2.1
2
+ Name: mlops
3
+ Version: 0.0.1
4
+ Author: jagpreet
5
+ Author-email: singhjagpreet096@gmail.com
mlops.egg-info/SOURCES.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ README.md
2
+ setup.py
3
+ mlops.egg-info/PKG-INFO
4
+ mlops.egg-info/SOURCES.txt
5
+ mlops.egg-info/dependency_links.txt
6
+ mlops.egg-info/requires.txt
7
+ mlops.egg-info/top_level.txt
8
+ src/__init__.py
mlops.egg-info/dependency_links.txt ADDED
@@ -0,0 +1 @@
 
 
1
+
mlops.egg-info/requires.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ numpy==1.25.2
2
+ pandas==2.0.3
3
+ python-dateutil==2.8.2
4
+ pytz==2023.3
5
+ six==1.16.0
6
+ tzdata==2023.3
mlops.egg-info/top_level.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ src
requirement.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ numpy==1.25.2
2
+ pandas==2.0.3
3
+ python-dateutil==2.8.2
4
+ pytz==2023.3
5
+ six==1.16.0
6
+ tzdata==2023.3
7
+ -e .
setup.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ## find packages automatically finds all packages those are in the application
3
+ from setuptools import find_packages,setup
4
+ from typing import List
5
+
6
+ HYPHEN_E_DOT = "-e ."
7
+ def get_requirements(file_path:str)->List[str]:
8
+ """
9
+ """
10
+ requirements = []
11
+ with open(file_path) as file_obj:
12
+ requirements = file_obj.readlines()
13
+ requirements = [req.replace("\n","") for req in requirements]
14
+ if HYPHEN_E_DOT in requirements:
15
+ requirements.remove(HYPHEN_E_DOT)
16
+ return requirements
17
+
18
+ setup(
19
+ name="mlops",
20
+ version="0.0.1",
21
+ author='jagpreet',
22
+ author_email='singhjagpreet096@gmail.com',
23
+ packages=find_packages(),
24
+ install_requires = get_requirements('requirement.txt')
25
+
26
+ )
src/__init__.py ADDED
File without changes