-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (43 loc) · 1.49 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
from setuptools import setup, find_packages
from os import path
import sys
from io import open
here = path.abspath(path.dirname(__file__))
sys.path.insert(0, path.join(here, 'recsys'))
from version import __version__
print('version')
print(__version__)
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='recsys',
version=__version__,
description='Recommender systems for evolving graphs',
url='https://github.com/weihua916/dyn-recsys',
author='Weihua Hu',
author_email='[email protected]',
keywords=['pytorch', 'graph machine learning', 'graph representation learning', 'graph neural networks'],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires = [
'torch>=1.7.0',
'numpy>=1.16.0',
'tqdm>=4.29.0',
'scikit-learn>=0.20.0',
'pandas>=0.24.0',
'six>=1.12.0',
'urllib3>=1.24.0',
'outdated>=0.2.0'
],
license='MIT',
packages=find_packages(exclude=['dataset_preprocessing']),
package_data={'recsys': []},
include_package_data=True,
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
)