-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
imnaveed092
committed
Mar 5, 2023
1 parent
12e9291
commit 477edd9
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pandas | ||
numpy | ||
seaborn | ||
-e . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from setuptools import setup , find_packages | ||
|
||
def get_requirements(filepath:str)->list: | ||
requirements=[] | ||
hyp_e='-e .' | ||
with open(filepath) as f: | ||
requirements=f.readlines() | ||
requirements=[req.replace('\n','') for req in requirements] | ||
if hyp_e in requirements: | ||
requirements.remove(hyp_e) | ||
return requirements | ||
|
||
setup( | ||
name='MLProject', | ||
version='0.0.1', | ||
author='Naveed', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=get_requirements('requirements.txt') | ||
|
||
) |