-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
78 lines (74 loc) · 2.4 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from setuptools import find_packages, setup
with open('collie/_version.py') as version_file:
exec(version_file.read())
with open('README.md') as r:
readme = r.read()
with open('LICENSE') as l:
license = l.read()
setup(
name='collie',
version=__version__,
description='A PyTorch library for preparing, training, and evaluating deep learning hybrid recommender systems.',
long_description=readme+'\n\n\nLicense\n-------\n'+license,
long_description_content_type='text/markdown',
author='Nathan Jones',
url='/~https://github.com/ShopRunner/collie',
download_url='/~https://github.com/ShopRunner/collie',
license='BSD-3-Clause',
data_files=[('', ['LICENSE'])],
packages=find_packages(exclude=('tests', 'docs')),
keywords=['deep learning', 'pytorch', 'recommender'],
python_requires='>=3.6',
install_requires=[
'docstring_parser',
'fire',
'joblib',
'numpy',
'pandas',
'pytorch-lightning>=1.0.0,<2.0.0',
'scikit-learn',
'tables',
'torch',
'torchmetrics',
'tqdm',
],
extras_require={
'dev': [
'flake8',
'flake8-docstrings',
'flake8-import-order',
'importlib-metadata<5.0', # breaks ``flake8`` in Python 3.7
'ipython',
'ipywidgets',
'jupyterlab>=3.0.0',
'matplotlib',
'm2r2',
'pip-tools',
'pydocstyle<4.0.0',
'pytest',
'pytest-cov<3.0.0',
'sphinx-copybutton',
'sphinx-rtd-theme==0.5.2',
'widgetsnbextension',
]
},
project_urls={
'Documentation': 'https://collie.readthedocs.io/',
'Source Code': '/~https://github.com/ShopRunner/collie',
},
classifiers=[
'Environment :: Console',
'Environment :: GPU',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)