-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (44 loc) · 1.41 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='dnnviewer',
version='0.1.0',
author='A. Hue',
url='https://github.com/tonio73/dnnviewer',
license='MIT',
description='Deep Neural Network inspection: view weights, gradients and activations',
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['DNN', 'CNN', 'Interpretability', 'Tensorflow', 'Keras'],
packages=find_packages(),
package_data={'dnnviewer': ["assets/*.css"]},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
install_requires=[
'numpy',
'tensorflow>=2.0',
'tensorflow-datasets',
'plotly>=4.0',
'dash',
'dash-core-components',
'dash-html-components',
'dash-bootstrap-components',
'pillow'
],
python_requires='>=3.5',
entry_points={
'console_scripts': [
'dnnviewer = dnnviewer.main:main'
]
},
)