-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (37 loc) · 1.22 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
from setuptools import setup, find_packages
import sys
from ramifi import __version__ as bv
setup(
name='ramifi',
version= bv,
author='Chienchi Lo',
author_email='[email protected]',
packages=find_packages(),
#scripts=['ramifi/ramifi'],
url='https://github.com/chienchi/ramifi',
license='LICENSE',
package_data={'ramifi.data':['*']},
include_package_data=True,
description='Script to do recombinant read analysis',
keywords=["recombinant","mix-infection"],
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
entry_points={ 'console_scripts': ['ramifi = ramifi.ramifi:main' ] },
install_requires=[
"plotly >=5.5.0",
"pandas >= 1.2.4",
"pysam >= 0.16.0.1",
"kaleido >= 0.2.1",
'biopython == 1.78',
'importlib-resources==5.7.1',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
zip_safe=False
)