-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 726 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='fastrec',
version='0.0.4',
description='Rapidly deployed gnn based recommender',
long_description=readme(),
url='https://github.com/devinjdangelo/FastRec',
author='Devin DAngelo',
packages=['fastrec'],
scripts=['fastrec/fastrec-deploy'],
install_requires=['fastapi','uvicorn','tqdm','pandas'],
dependency_links=['https://download.pytorch.org/whl/torch_stable.html'],
keywords='recommender graph neural network gnn deployment deploy',
include_package_data=True,
long_description_content_type="text/markdown",
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)