-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
45 lines (38 loc) · 1.01 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.md').read()
requirements = [
]
test_requirements = [
]
setup(
name='pyrwr',
version='1.0.0',
description='Python Implementation for Random Walk with Restart',
long_description=readme,
author='Jinhong Jung',
author_email='[email protected]',
url='https://github.com/jinhongjung/pyrwr',
entry_points={
'console_scripts': [
'pyrwr=pyrwr.__main__:main'
]
},
packages=['pyrwr', 'utils'],
include_package_data=True,
install_requirements=requirements,
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6.6',
],
test_suites='tests',
test_require=test_requirements
)