-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (42 loc) · 1.58 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
with open(os.path.join("thoraxe", "version.py")) as file:
exec(file.read())
setup(
name='thoraxe',
description="Disentangle homology relationships between exons.",
keywords=['orthologous exons', 'protein isoforms', 'gene transcripts'],
author="Diego Javier Zea, Hugues Richard & Elodie Laine",
author_email='diegozea@gmail.com',
url='https://github.com/PhyloSofS-Team/thoraxe',
version=__version__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English', 'Programming Language :: Python :: 3'
],
python_requires=">=3.6.1,<3.9", # pandas & numpy <3.10, network <3.9
entry_points={
'console_scripts': [
'transcript_query=thoraxe.transcript_query:main',
'thoraxe=thoraxe:main',
'add_transcripts=thoraxe.add_transcripts:main'
],
},
packages=find_packages(),
package_data={'thoraxe': ['subexons/assets/cluster_plots.html']},
setup_requires=['pytest-runner'],
install_requires=[
'pandas>0.21.0,<1.5', 'biopython>1.44,<1.78', 'requests', 'numpy<1.20',
'recordclass', 'urllib3>=1.26.5', 'networkx==2.3.0', 'tabulate'
],
test_suite='tests',
tests_require=[
'pytest', 'pytest-cov', 'coveralls', 'codecov', 'pytest-pylint',
'pylint','numpy<1.20'
],
include_package_data=True,
zip_safe=False,
license="MIT license")