Skip to content

Commit

Permalink
make pip installable
Browse files Browse the repository at this point in the history
  • Loading branch information
devinjdangelo committed Jul 13, 2020
1 parent 86dd1bb commit 39aaf77
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
5 changes: 5 additions & 0 deletions fastrec/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import os, sys
sys.path.append(os.path.dirname(os.path.realpath(__file__)))

from .GraphSimRec import GraphRecommender
from .RecAPI import app
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from setuptools import setup

setup(name='fastrec',
version='0.0.1',
description='Rapidly deployed gnn based recommender',
url='https://github.com/devinjdangelo/FastRec',
author='Devin DAngelo',
packages=['fastrec'],
zip_safe=False)

0 comments on commit 39aaf77

Please sign in to comment.