-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (27 loc) · 1.2 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
import codecs
import os
import re
import sys
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
# intentionally *not* adding an encoding option to open, See:
# https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
with codecs.open(os.path.join(here, *parts), 'r') as fp:
return fp.read()
setup(name = 'AGEpy',
version = '0.8.2',
description = 'Bioinformatics tools for Python developed at the MPI for Biology of Ageing',
long_description = read('README.rst'),
url = 'https://github.com/mpg-age-bioinformatics/AGEpy',
author = 'Bioinformatics Core Facility of the Max Planck Institute for Biology of Ageing',
author_email = '[email protected]',
license = 'MIT',
packages = [ 'AGEpy' ],
install_requires = [ 'Pandas>=0.15.2', 'numpy>=1.9.2','requests>=2.20.0', \
'suds', 'zeep', 'openpyxl','xlrd', 'biomart', 'matplotlib','pybedtools', \
'xlsxwriter','wand','paramiko','ipaddress', 'seaborn', \
'scipy', 'scikit-learn', 'statsmodels'],
zip_safe = False,
scripts=['bin/obo2tsv','bin/aDiff','bin/abed','bin/david', 'bin/blasto', 'bin/QC_plots']
)