-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 851 Bytes
/
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
from setuptools import setup, find_packages
version = {}
with open("longcallR_nn/_version.py") as version_file:
exec(version_file.read(), version)
setup(
name='longcallR_nn',
version=version['__version__'],
author="Neng Huang",
license="Licensed under the MIT License",
author_email="[email protected]",
long_description="longcallR: a deep learning based variant caller for long-reads RNA-seq data",
url="https://github.com/huangnengCSU/longcallR-nn",
download_url='https://github.com/huangnengCSU/longcallR-nn/archive/{}.tar.gz'.format(version['__version__']),
entry_points={
'console_scripts': [
'longcallR_nn=longcallR_nn.longcallR_nn:main',
],
},
platforms="Unix like",
zip_safe=False,
packages=find_packages(), # Make sure this includes all packages
)