forked from xmodar/network_moments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 634 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
# this package cloud benefit from namespace packages
# Link: https://packaging.python.org/guides/packaging-namespace-packages/
name = 'network_moments'
setup(
name=name,
version='0.8.5',
description=(
'A toolkit for computing some probabilistic moments '
'of deep neural networks'
),
url='https://github.com/ModarTensai/network_moments',
author='Modar M. Alfadly',
author_email='modar.alfadly@gmail.com',
license='MIT',
namespace_packages=[name],
packages=[name] + [name + '.' + p for p in find_packages(name)],
zip_safe=False
)