This repository was archived by the owner on Mar 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (43 loc) · 1.54 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
43
44
45
46
47
from setuptools import find_packages, setup
import os
import codecs
from conveiro import __version__
with codecs.open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r', encoding='utf-8') as f:
description = f.read()
setup(
author='The ShowmaxLab & Showmax teams',
author_email='[email protected]',
classifiers=[
"Development Status :: 3 - Alpha",
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
"Topic :: Scientific/Engineering",
'Topic :: Software Development :: Libraries :: Python Modules',
],
description='Visualization of filters in convolutional neural networks',
include_package_data=True,
install_requires=['numpy', 'matplotlib', 'scipy', 'pillow'],
extras_require = {
'gpu' : ['tensorflow-gpu<2.0'],
'cpu' : ['tensorflow<2.0'],
'examples' : ['tensornets'],
'cli': ['tensornets', 'click', 'graphviz']
},
entry_points = {
'console_scripts': [
'conveiro = conveiro.cli:run_app'
]
},
keywords=['CNN', 'neural networks', 'deep dream', 'visualization'],
license='Apache License, Version 2.0',
long_description=description,
long_description_content_type='text/markdown',
name='conveiro',
packages=find_packages(),
python_requires = "~=3.4",
platforms=['any'],
version=__version__,
url='https://github.com/showmax/conveiro',
)