forked from asmmahmoud/NanoINSight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.19 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
from setuptools import setup, find_packages
import os
current_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
exec(open("nanoinsight/version.py").read())
setup(
name='nanoinsight',
version=__version__,
packages=find_packages(),
url='https://github.com/AsmaaSamyMohamedMahmoud/nanoinsight',
license='gpl-3.0',
author='Asmaa',
author_email='[email protected]',
description='Repeat annotation tool for insertions called by NanoVar',
keywords=['insertion', 'structural variant','repeat annotation'],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['biopython>=1.82', 'scikit-allel>=1.3.7', 'pandas>=1.5.3'],
entry_points={
"console_scripts": [
"nanoinsight=nanoinsight.nanoinsight:main",
],
},
python_requires='>=3.8',
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)