-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 682 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 682 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Get the long description from the README file
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='iRRR',
version='0.0.1',
description='Python3 implementation of integrative reduced-rank regression.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Emily Stephen',
email='emilyps14@gmail.com',
url='https://https://github.com/emilyps14/iRRR_python',
packages=find_packages(),
include_package_data=True,
install_requires=[
'PyQt5',
'matplotlib',
'scipy',
'numpy'],
)