-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (40 loc) · 1.45 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import netsyn
setup(
name='netsyn',
version=netsyn.__version__,
packages=find_packages(),
author='CEA/DRF/JACOB/GENOSCOPE/LABGeM',
author_email='[email protected]',
description='NetSyn is a tool to detect conserved genomic contexts (i.e. synteny conservation) among a list of protein targets.',
long_description=open('README.md').read(),
install_requires=[
'pyyaml',
'python-igraph',
'jsonschema',
'networkx>=2.8',
'markov_clustering',
'urllib3',
'biopython',
'requests'
],
include_package_data=True,
url='http://github.com/labgem/netsyn',
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
entry_points={
'console_scripts': [
'netsyn=netsyn.netsyn:main',
'netsyn_getINSDCFiles=netsyn.netsyn_getINSDCFiles:main',
'netsyn_parseINSDCFiles_GetTaxonomy=netsyn.netsyn_parseINSDCFiles_GetTaxonomy:main',
'netsyn_clusteringIntoFamilies=netsyn.netsyn_clusteringIntoFamilies:main',
'netsyn_syntenyFinder=netsyn.netsyn_syntenyFinder:main',
'netsyn_dataExport=netsyn.netsyn_dataExport:main'
]
}
)