-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 681 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from typing import List
def get_requirements() -> List[str]:
try:
with open('requirements.txt', 'r') as file:
requirement_list = [
line.strip() for line in file.readlines()
if line.strip() and line.strip() != '-e .'
]
return requirement_list
except FileNotFoundError:
print("requirements.txt file not found.Make sure it exists in the root directory")
return []
setup(
name="doctor-appointment-agent",
version="0.0.1",
author="Subhranil Paul",
packages=find_packages(),
install_requires=[],
python_reqires=">=3.10",
)