-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
33 lines (30 loc) · 1.07 KB
/
setup.py
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
import logging
from setuptools import setup, find_packages
# Load requirements from file
try:
with open('requirements.txt', 'r') as req_file:
install_reqs = req_file.read()
except Exception:
logging.warning('[!] Failed at loading requirements file.')
setup(
name='food-volume-estimation',
version='0.3',
description='Estimate food volume from input image.',
url='https://github.com/AlexGraikos/food_volume_estimation',
author='Graikos Alexandros',
author_email='[email protected]',
install_requires=install_reqs,
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Educaction',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Processing',
'Programming Language :: Python :: 3.6',
],
keywords='food volume estimation tensorflow keras',
packages=find_packages()
)