forked from xadrianzetx/coral-deeplab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 868 Bytes
/
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
from setuptools import setup, find_packages
from coral_deeplab import __version__
def get_long_desc():
with open('README.md', 'r') as file:
description = file.read()
return description
setup(
name='coral_deeplab',
version=__version__,
author='xadrianzetx',
url='https://github.com/xadrianzetx/coral-deeplab',
description='Coral Edge TPU compilable version of DeepLab v3',
long_description=get_long_desc(),
long_description_content_type='text/markdown',
packages=find_packages(include=['coral_deeplab']),
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
python_requires='==3.7.*',
install_requires=[
'numpy>=1.19.5',
'tensorflow-gpu==2.4.0'
]
)