File size: 877 Bytes
8e5d8c7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# setup.py
from setuptools import setup, find_packages

setup(
    name="SemanticModel",
    version="0.1.0", 
    description="Deep learning framework for semantic segmentation",
    author="Your Name",
    packages=find_packages(),
    python_requires=">=3.8",
    install_requires=[
        'torch',
        'torchvision',
        'tensorboard',
        'pyproj',
        'fiona==1.8.20',
        'rtree',
        'geopandas',
        'rasterio',
        'slidingwindow',
        'opencv-python',
        'wandb',
        'tifffile',
        'imagecodecs', 
        'albumentations',
        'segmentation-models-pytorch>=0.3.3'
    ],
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3.8",
    ],
)