File size: 665 Bytes
e6748e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name='Grainsight',  
    version='0.1.0',  
    author='Your Name',  
    author_email='your_email@example.com',  
    description='A Streamlit app for segmenting grains using FastSAM',  
    packages=find_packages(where="src"),  
    install_requires=[
        'streamlit',
        'pillow',
        'ultralytics',
        'torch',
        'numpy',
        'opencv-python',
        'matplotlib',
        'pandas',
        'seaborn',
        'streamlit-drawable-canvas',
        'pyyaml'  
    ],
    entry_points={
        'console_scripts': [
            'grainsight = grainsight.app:main'
        ]
    }
)