-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
35 lines (32 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
#from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='rectorch',
packages=find_packages(exclude=['build', 'doc', 'templates']),
version='0.0.9b',
install_requires=[
"numpy",
"scipy",
"torch",
"Bottleneck",
"munch"
],
python_requires='>=3.6',
license="MIT",
description='rectorch: state-of-the-art recsys approaches implemented in pytorch.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Mirko Polato',
author_email='mak1788@gmail.com',
url='https://github.com/makgyver/rectorch',
download_url='https://github.com/makgyver/rectorch',
keywords=['recommender-system', 'pytorch', 'machine-learning', 'algorithm', 'variational-autoencoder', 'gan'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
]
)