-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 756 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages, setup
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!")
return []
setup(
name="doctor-appointment-agentic",
version="0.0.1",
author="Paramaguru",
author_email="paramaguruvh@gmail.com",
packages=find_packages(),
install_requires=get_requirements(),
python_requires=">=3.10", # Ensure compatible Python version
)