Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rexxy-sasori committed Dec 19, 2021
1 parent 2e01273 commit 8c58feb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
nnutils/__init__.py
2 changes: 2 additions & 0 deletions nnutils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import cnn_complexity_analyzer
from . import training_pipeline
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
from distutils.core import setup

setup(
name='nnutils', # How you named your package folder (MyLib)
name='nn_pipeline', # How you named your package folder (MyLib)
packages=['nnutils'], # Chose the same as "name"
version='0.1', # Start with a small number and increase it with every change you make
version='0.2', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description='Common utility functions for training and evaluating neural networks as well as analyzing computational complexity',
# Give a short description about your library
author='Rex Geng', # Type in your name
author_email='hgeng4@illinois.edu', # Type in your E-Mail
url='https://github.com/rexxy-sasori/cnn_complexity_analyzer',
url='https://github.com/rexxy-sasori/nnutils.git',
# Provide either the link to your github or to your website
download_url='https://github.com/rexxy-sasori/cnn_complexity_analyzer/archive/refs/tags/v0.1.tar.gz', # I explain this later on
download_url='https://github.com/rexxy-sasori/nnutils/archive/refs/tags/v0.2.tar.gz', # I explain this later on
keywords=['Complexity', 'Profiler', 'CNN'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'torch>=1.8.1',
Expand Down

0 comments on commit 8c58feb

Please sign in to comment.