-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (24 loc) · 859 Bytes
/
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
from setuptools import setup
with open("README_PR.md", "r") as f:
long_description = f.read()
setup(
name='danker',
version='0.8.1',
url='https://github.com/athalhammer/danker',
author='Andreas Thalhammer',
author_email='[email protected]',
description='Compute PageRank on large graphs with ' +
'off-the-shelf hardware.',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['danker'],
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
],
python_requires='>=3.8',
install_requires=[]
)