forked from liguowang/CrossMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·47 lines (41 loc) · 1.69 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
import sys, os, platform, glob
from setuptools import *
from distutils.core import setup
"""
Setup script for CrossMap -- Lift over genomics coordinates between assemblies
"""
def main():
setup( name = "CrossMap",
version = "0.6.3",
python_requires='>=3.5',
py_modules = [ 'psyco_full' ],
packages = find_packages( 'lib' ),
package_dir = { '': 'lib' },
package_data = {},
scripts = glob.glob( "bin/*.py"),
ext_modules = [],
test_suite = 'nose.collector',
setup_requires = ['nose>=0.10.4','cython>=0.12'],
author = "Liguo Wang",
author_email ="[email protected]",
platforms = ['Linux','MacOS'],
requires = ['cython (>=0.17)'],
install_requires = ['cython>=0.17','pysam','bx-python','pyBigWig'],
description = " Lift over genomics coordinates between assemblies",
url = "https://crossmap.readthedocs.io/en/latest/",
zip_safe = False,
dependency_links = [],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='Genome coordinates lift over',
)
if __name__ == "__main__":
main()