File size: 207 Bytes
106328a
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from setuptools import setup, find_packages
import os

setup(
    name='ovis_image',
    version='1.0.0',
    packages=find_packages(include=['ovis_image']),
    # include any other necessary details here
)