-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·53 lines (45 loc) · 1.18 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
#!/usr/bin/env python
# encoding: utf8
# setup.py
"""DeepWalk python wrapper over native implementation.
"""
from setuptools import find_packages, setup
DOCLINES = (__doc__ or '').split('\n')
CLASSIFIERS = """\
Development Status :: 1 - Planning
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: C++
Programming Language :: Python
Topic :: Scientific/Engineering
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
PLATFORMS = [
'Windows',
'Linux',
'Solaris',
'Mac OS-X',
'Unix',
]
MAJOR = 0
MINOR = 0
PATCH = 0
VERSION = '{0:d}.{1:d}.{2:d}'.format(MAJOR, MINOR, PATCH)
setup(name='deepwalk',
version=VERSION,
description = DOCLINES[0],
long_description = '\n'.join(DOCLINES[2:]),
url='https://github.com/xgfs/deepwalk-c',
license='MIT',
platforms=PLATFORMS,
classifiers=[line for line in CLASSIFIERS.split('\n') if line],
packages=find_packages(),
entry_points={
'console_scripts': [
'convert-bcsr = deepwalk.cli:main',
],
})