-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (51 loc) · 1.91 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='phylosofs',
description='A tool to model the evolution and structural impact of '
'alternative splicing.',
keywords=['splicing', 'evolution', 'structure'],
version='0.1.0',
url='https://github.com/PhyloSofS-Team/PhyloSofS',
author='Adel Ait-hamlat, Diego Javier Zea, Antoine Labeeuw, Lélia Polit, '
'Hugues Richard and Elodie Laine',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
entry_points={
'console_scripts': [
'phylosofs=phylosofs.phylosofs:main',
'setup_databases=phylosofs.setup_databases:main'
],
},
package_data={
'phylosofs': [
'src/plots_with_exons.jl', 'src/reconstruct_pir.jl',
'src/reconstruct_plot.jl', 'src/setup_databases.jl',
'src/get_pdbs.jl', 'src/Manifest.toml', 'src/Project.toml'
]
},
packages=find_packages(include=['phylosofs']),
setup_requires=['pytest-runner'],
install_requires=[
'biopython', # change B factor
'numpy', # handle transcript tables
'networkx==2.3.0', # handle phylogenetic trees
'pydot' # visualization of the phylogenies
],
test_suite='tests',
tests_require=[
'pytest', 'pytest-cov', 'coveralls', 'codecov', 'pytest-pylint',
'pylint'
],
license='MIT license')