-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (24 loc) · 882 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
27
import setuptools
# Developer self-reminder for uploading in pypi:
# - install: wheel, twine
# - build : python setup.py bdist_wheel
# - deploy : twine upload dist/*
with open("README.md", "r") as file:
long_description = file.read()
setuptools.setup(
name="pygrank",
version="0.2.14",
author="Emmanouil (Manios) Krasanakis",
author_email="[email protected]",
description="Recommendation algorithms for large graphs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://pygrank.readthedocs.io",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=["scikit-learn", "scipy", "numpy", "networkx", "wget"],
)