14 lines
219 B
Python
14 lines
219 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name="image_prediction",
|
|
version="0.1.0",
|
|
description="",
|
|
author="",
|
|
author_email="",
|
|
url="",
|
|
packages=["image_prediction"],
|
|
)
|