forked from yingkaisha/keras-unet-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.5 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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='swiss_army_keras',
version='0.10.0',
description='A collection of models and utilities for the development of edge deployable Keras models',
long_description=long_description,
keywords=['keras', 'segmentation', 'classification', 'finetuning', 'edge',
'quantization', 'augmentation'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Graphics'],
url='http://github.com/desmoteo/swiss-army-keras',
author='Matteo Ferrabone',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
package_data={
# If any package contains *.txt files, include them:
"": ["*.ttf"],
},
install_requires=[
'numpy',
#'tensorflow>=2.4.0',
'efficientnet-lite-keras @ git https://github.com/waterviewsrl/efficientnet-lite-keras.git',
'irondomo',
'pillow',
'typeguard',
'tensorflow_model_optimization'
],
zip_safe=False)