Skip to content

Commit

Permalink
DEV: Updates version to 0.25.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jfkirk committed Oct 18, 2018
1 parent a565621 commit b98542c
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
from pip.req import parse_requirements
from pip.download import PipSession
from setuptools import setup

from os import path

here = path.abspath(path.dirname(__file__))
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]

install_reqs = parse_requirements(path.join(here, 'requirements.txt'), session=PipSession())
reqs = [str(ir.req) for ir in install_reqs]
here = path.abspath(path.dirname(__file__))
install_reqs = parse_requirements(path.join(here, 'requirements.txt'))

setup(
name='tensorrec',
packages=['tensorrec'],
version='0.25.5',
version='0.25.6',
description='A TensorFlow recommendation algorithm and framework in Python.',
author='James Kirk',
author_email='james.f.kirk@gmail.com',
url='https://github.com/jfkirk/tensorrec',
keywords=['machine-learning', 'tensorflow', 'recommendation-system', 'python', 'recommender-system'],
classifiers=[],
install_requires=reqs,
install_requires=install_reqs,
)

0 comments on commit b98542c

Please sign in to comment.