forked from pedroramaciotti/MDScaling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 855 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 855 Bytes
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
"""`setup.py`"""
from setuptools import setup, find_packages
# # Package requirements
# with open('requirements.txt') as f:
# INSTALL_REQUIRES = [l.strip() for l in f.readlines() if l]
INSTALL_REQUIRES=[
'numpy',
'pandas',
'scikit-learn',
'scipy',
'matplotlib',
'prince',
]
setup(name='mdscaling',
version='0.0.9',
description='Multi-dimensional network scaling',
author='Pedro Ramaciotti Morales',
author_email='pedro.ramaciotti@gmail.com',
url = 'https://github.com/pedroramaciotti/MDScaling',
download_url = 'https://github.com/pedroramaciotti/MDScaling/archive/0.0.9.tar.gz',
keywords = ['multi-dimensional scaling','graph compression','dimentionality reduction','representation learning'],
packages=find_packages(),
data_files=[('', ['LICENSE'])],
install_requires=INSTALL_REQUIRES)