-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1.27 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
from setuptools import setup, find_packages, find_namespace_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='miRge-build',
version='0.0.1',
author='Arun Patil and Marc Halushka',
author_email='[email protected]',
url='https://github.com/mhalushka/miRge3_build',
description='miRge-build: Building libraries of small RNA sequencing Data',
long_description=long_description,
keywords=['miRge-build', 'small RNA analysis', 'NGS', 'bioinformatics tools'],
license='MIT',
package_dir={'mirge_build':'mirge_build'},
install_requires=['biopython==1.77','scikit-learn==0.23.1','scipy==1.4.1'],
packages=find_packages(),
entry_points={'console_scripts': ['miRge-build = mirge_build.__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.8',
)