Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel committed Dec 17, 2018
1 parent fb9b8c6 commit 16a518a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy
torch==0.4.1
torch>=0.4.1
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
from setuptools import setup, find_packages


with open('requirements.txt') as f:
with open('requirements.txt', encoding='utf-8') as f:
required = f.read().splitlines()

with open('README.md', encoding='utf-8') as f:
long_description = f.read()

setup(
name='dropblock',
version='0.2.1',
version='0.3.0',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=required,
url='https://github.com/miguelvr/dropblock',
license='MIT',
Expand Down

0 comments on commit 16a518a

Please sign in to comment.