Skip to content

Commit

Permalink
package setup
Browse files Browse the repository at this point in the history
  • Loading branch information
iKrishneel committed May 2, 2020
0 parents commit 1e0dc78
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*~
__pycache__/*
*.egg-info/*
*.pyc
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-


import os
import pkg_resources
import sys

from setuptools import find_packages
from setuptools import setup


setup_requires = []
install_requires = [
'opencv-python',
'numpy',
'matplotlib',
'torch',
'torchvision',
'tqdm',
]


setup(
name='efficient net',
version='0.0.0',
description='',
author='Krishneel Chaudhary',
author_email='krishneel@krishneel',
license='None',
packages=find_packages(),
setup_requires=setup_requires,
install_requires=install_requires
)

0 comments on commit 1e0dc78

Please sign in to comment.