-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (22 loc) · 802 Bytes
/
setup.py
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
from setuptools import setup, find_packages
from typing import List
def get_requirements(file_path:str) -> List[str]:
"""
this function will return the list of packages requirements
"""
requirements = []
with open(file_path) as file_object:
requirements=file_object.readlines()
requirements=[req.replace("\n", "") for req in requirements]
if "-e ." in requirements:
requirements.remove("-e .")
setup(
version="1.0.0",
packages=find_packages(),
install_requires=get_requirements("requirements.txt"),
name="Heart_Disease_Predictor",
description='A heart disease prediction model',
author="exis001",
author_email="[email protected]",
url="https://github.com/exis000/HeartDiseasePredictor_Model"
)