9 lines
254 B
Python
9 lines
254 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='thesis',
|
|
version='0.1.0',
|
|
author='Tobias Eidelpes',
|
|
author_email='e1527193@student.tuwien.ac.at',
|
|
packages=find_packages(),
|
|
description='Flower State Classification')
|