-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (30 loc) · 1.47 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
import os
from setuptools import setup, find_packages
with open("README.md", "r") as fl:
long_description = fl.read()
def parse_requirements(file):
required_packages = []
with open(os.path.join(os.path.dirname(__file__), file)) as req_file:
for line in req_file:
required_packages.append(line.strip())
return required_packages
setup(name='snore-embedding',
version='0.3.3',
url='https://github.com/smeznar/SNoRe',
author='Sebastian Mežnar and Blaž Škrlj',
author_email='smeznar@gmail.com',
license='GNU General Public License v3.0',
keywords=['graph', 'representation learning', 'symbolic', 'snore', 'unsupervised learning'],
description='SNoRe: Scalable Unsupervised Learning of Symbolic Node Representations',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['snore'],
packages=find_packages(),
classifiers=['Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
install_requires=parse_requirements('requirements.txt'))