forked from ranganathanlab/pySCA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (34 loc) · 976 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
28
29
30
31
32
33
34
35
36
#! /usr/bin/env python3
""" Installation and setup for pySCA"""
from setuptools import setup
setup(
name="pySCA",
version="6.1",
author="Olivier Rivoire, Rama Ranganathan, and Kimberly Reynolds",
maintainer="Ansel George",
packages=["pysca"],
package_data={"pysca": ["settings.py"]},
description="Python 3 implementation of Statistical Coupling Analysis (SCA)",
url="https://ranganathanlab.gitlab.io/pySCA",
download_url="https://github.com/ranganathanlab/pySCA",
long_description=open("README.md", "r").read(),
install_requires=[
"biopython",
"numpy",
"scipy",
"argparse",
"wheel",
"matplotlib",
],
scripts=[
"bin/alnChangeDelim",
"bin/alnFilterSeqSize",
"bin/alnParseID",
"bin/annotateMSA",
"bin/scaProcessMSA",
"bin/alnConvertGI",
"bin/alnReplaceHeaders",
"bin/scaCore",
"bin/scaSectorID",
],
)