-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
33 lines (31 loc) · 1.66 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
from setuptools import setup, find_packages, find_namespace_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='mirge3',
version='0.1.3',
author='Arun Patil and Marc Halushka',
author_email='[email protected]',
url='https://github.com/mhalushka/miRge3.0/',
description='Comprehensive analysis of small RNA sequencing Data',
long_description=long_description,
keywords=['miRge', 'small RNA analysis', 'NGS', 'bioinformatics tools', 'GUI'], # arbitrary keywords
license='MIT',
package_dir={'mirge': 'mirge'},
packages=find_packages(),
package_data = {'':['models/*.pkl', 'models/*.txt', 'rScripts/*.R', 'libs/kmc', 'libs/kmc_dump', 'libs/miREC_fq']},
install_requires=['biopython>=1.78','cutadapt','future>=0.18.2','joblib>=0.15.1','matplotlib>=3.2.1','pandas>=1.0.3','reportlab>=3.5.42','scikit-learn==0.23.1','scipy>=1.4.1'],
#install_requires=['biopython==1.78','cutadapt','future>=0.18.2','joblib>=0.15.1','matplotlib>=3.2.1','pandas>=1.0.3','reportlab>=3.5.42','scikit-learn==0.23.1','scipy>=1.4.1'],
entry_points={'console_scripts': ['miRge3.0 = mirge.__main__:main']},
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
include_package_data=True,
python_requires='>=3.7',
)