Skip to content

Commit

Permalink
Patch havakv readme (#13)
Browse files Browse the repository at this point in the history
* Update readme

* Bump version: 0.1.1 → 0.1.2
  • Loading branch information
havakv authored Nov 24, 2019
1 parent 0f3d6ee commit 3d70ff5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# torchtuples

[![Python package](https://github.com/havakv/torchtuples/workflows/Python%20package/badge.svg)](https://github.com/havakv/torchtuples/actions)
[![PyPI](https://img.shields.io/pypi/v/torchtuples.svg)](https://pypi.org/project/torchtuples/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/torchtuples.svg)
[![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://github.com/havakv/torchtuples/blob/master/LICENSE)

**torchtuples** is a small python package for training PyTorch models.
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[metadata]
license_files = LICENSE

[bumpversion]
current_version = 0.1.1
current_version = 0.1.2
commit = True
tag = False

[metadata]
license_files = LICENSE

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
from setuptools import setup, find_packages


with open('README.md', 'r') as readme_file:
readme = readme_file.read()

requirements = [
'numpy>=1.15.4',
'pandas>=0.24.2',
Expand All @@ -16,8 +19,10 @@

setup(
name='torchtuples',
version='0.1.1',
version='0.1.2',
description="Training neural networks in PyTorch",
long_description=readme,
long_description_content_type='text/markdown',
author="Haavard Kvamme",
author_email='[email protected]',
url='https://github.com/havakv/torchtuples',
Expand All @@ -32,8 +37,8 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6'
)
2 changes: 1 addition & 1 deletion torchtuples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Haavard Kvamme"""
__email__ = '[email protected]'
__version__ = '0.1.1'
__version__ = '0.1.2'

try:
import torch
Expand Down

0 comments on commit 3d70ff5

Please sign in to comment.