File size: 615 Bytes
64e0d0d acc9dc1 64e0d0d 67b0530 1166b79 64e0d0d acc9dc1 64e0d0d |
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 setup, find_packages
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='medvqa',
version='0.1',
packages=find_packages() +
find_packages(include=['*'], where='./competitions/gi-2025'),
entry_points={
'console_scripts': [
'medvqa=medvqa.cli:main',
],
},
install_requires=[
# Add your dependencies here
],
long_description=long_description,
long_description_content_type='text/markdown'
)
|