-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 669 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
__author__ = 'Diego'
from distutils.core import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
windows = ["vcorr/view_correlations.py"],
name = "Correlations_Viewer",
version = "0.0.1a",
author = "Diego A",
author_email = "da.angulo39@uniandes.edu.co",
description = "A simple application for exploring correlations in a data set",
license = "MIT",
keywords = "correlations regression",
url = "imagine.uniandes.edu.co",
packages=["vcorr"],
long_description=read('README.md'),
install_requires=['numpy','scipy','matplotlib','PyQt4','pandas','seaborn'],
)