-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (32 loc) · 1.11 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
from setuptools import setup, find_packages
from pyoverchain.core import version
setup(name='pyoverchain',
version=version.get(),
description="a python pipeline to generate chain files between different genome assemblies for LiftOver",
long_description=__doc__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='genome bioinformatics assembly BLAT LiftOver',
author='Tao Zhu',
author_email='taozhu@mail.bnu.edu.cn',
url='https://github.com/billzt/pyOverChain',
license='MIT',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'progressbar2'
],
entry_points={
'console_scripts': [
'pyoverchain = pyoverchain.cmd.run:main',
]
}
)