Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checking in sample test #43

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added setup.py to package, python setup.py register sdist upload
Srikanth committed Jan 12, 2019
commit 6b1f23a82f98d3fb3de3db0c84441243e87a7f5f
35 changes: 35 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env python
import os
import io
import re
import sys
from setuptools import setup, find_packages


with open('README.md', 'r') as fh:
long_description = fh.read()

requirements = [
'pytorch>= 0.4.1',
'torchvision',
'visdom',
]

setup(
# Metadata
name='tensormon',
version='0.1',
author='Vikas Gottemukkula',
author_email='[email protected]',
url='https://github.com/Tensor46/TensorMONK',
description='TenorMonk is a collection of deep learning architectures',
long_description=long_description,
license='BSD',

# Package info
packages=find_packages(exclude=('test',)),

zip_safe=True,
install_requires=requirements,
extras_require={},
)