Skip to content

Commit

Permalink
Added the submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
ishan121028 committed Oct 7, 2023
1 parent 6b646ff commit 07fbdd1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
from setuptools import setup
from setuptools import find_packages

setup(
name='UniTrain',
version='0.2',
version='0.2.1',
author='Ishan Upadhyay',
author_email='[email protected]',
description='A generalized training framework for Deep Learning Tasks',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/ishan121028/UniTrain',
download_url='https://github.com/ishan121028/UniTrain/archive/v0.1.tar.gz',
packages=['UniTrain'],
packages=find_packages(
where='UniTrain',
include=['*'],
) ,
package_dir={'':'UniTrain'},
install_requires=[
'torch',
'torchvision',
Expand Down

0 comments on commit 07fbdd1

Please sign in to comment.