-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (32 loc) · 1.08 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
'''
This script aims to build my entire project as a package.
'''
from setuptools import find_packages, setup
from typing import List
HYPHEN_E_DOT = '-e .'
def get_requirements(file_path:str)->List[str]:
'''
This function returns the list of packages in requirements.txt.
Parameters
----------
@param file_path: The path of requirements.txt file [type: string].
Return
------
@return requirements: List of strings containing the packages required for the project.
'''
requirements = list()
with open(file_path) as file:
requirements = file.readlines()
requirements = [req.replace('\n', '') for req in requirements]
if HYPHEN_E_DOT in requirements:
requirements.remove(HYPHEN_E_DOT)
return requirements
# Defining the setup.
setup(
name = 'Credit Card Churn Prediction',
version = '0.0.1',
author = 'Paulo Beckhauser',
author_email = '[email protected]',
packages = find_packages(),
install_requires = get_requirements('requirements.txt')
)