-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 697 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 697 Bytes
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
__author__ = 'porky-chu'
from setuptools import find_packages, setup
if __name__ == '__main__':
name = 'graph2vec'
setup(
name=name,
version="0.0.2",
author='Allen Tran',
author_email='realallentran@gmail.com',
description='meaningful vector representations of nodes',
url='https://github.com/allentran/graph2vec',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Operating System :: Unix',
'Operating System :: MacOS',
],
setup_requires=[
'setuptools>=3.4.4',
],
)