Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vballoli committed Feb 16, 2021
1 parent 1e258b7 commit fa620e0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
from setuptools import setup, find_packages

from os import path
curdir = path.abspath(path.dirname(__file__))
with open(path.join(curdir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name = 'nfnets-pytorch',
packages = find_packages(),
version = '0.0.4',
version = '0.0.5',
license='MIT',
description = 'NFNets, PyTorch',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Vaibhav Balloli',
author_email = '[email protected]',
url = 'https://github.com/vballoli/nfnets-pytorch',
Expand Down

0 comments on commit fa620e0

Please sign in to comment.