-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (29 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
from setuptools import find_packages, setup
import ranky
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ranky',
version=ranky.__version__,
author="Adrien Pavao",
author_email="[email protected]",
description="Compute rankings in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/didayolo/ranky",
project_urls={
"Bug Tracker": "https://github.com/didayolo/ranky/issues",
"Documentation": "https://didayolo.github.io/ranky/",
"Source Code": "https://github.com/didayolo/ranky",
},
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Unix",
],
install_requires=[
'pandas', 'numpy', 'matplotlib', 'scikit-learn>=1.0',
'scipy>=1.7.0', 'seaborn', 'networkx', 'python-Levenshtein', 'tqdm', 'baycomp',
],
)