-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (26 loc) · 837 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
30
31
32
33
34
from setuptools import find_packages, setup
from typing import List
__HYPHEN = '-e .'
def get_requirements(file_path:str) -> List[str]:
"""
This function will read the requirements.txt file and return the list of requirements.
Args:
file_path (str): Input file path
Returns:
List[str]: List of requirements
"""
requirements = []
with open(file_path) as f:
requirements = f.readlines()
requirements = [req.replace('\n', '') for req in requirements]
if __HYPHEN in requirements:
requirements.remove(__HYPHEN)
return requirements
setup(
name='SkimLit',
version='0.0.1',
author='Aditya Paul',
author_email='adityapaul.official@outlook.com',
packages = find_packages(),
install_requires=get_requirements('requirements.txt'),
)