forked from reneshbedre/bioinfokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.46 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
import bioinfokit
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='bioinfokit',
version=bioinfokit.__version__,
# metadata
author='Renesh Bedre',
author_email='[email protected]',
maintainer='Renesh Bedre',
description='Bioinformatics data analysis and visualization toolkit',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
url='https://github.com/reneshbedre/bioinfokit',
packages=['bioinfokit',],
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
],
install_requires=['pandas', 'numpy', 'matplotlib', 'scipy', 'scikit-learn', 'seaborn', 'matplotlib-venn',
'tabulate', 'statsmodels', 'textwrap3', 'adjustText'],
)