forked from fdarthen/taXaminer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (50 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
with open("README.md", "r") as input:
long_description = input.read()
setup(
name="taxaminer",
version="0.7.3",
python_requires='>=3.7.0',
description="Interactive exploration of biodiverse genome assemblies",
long_description=long_description,
long_description_content_type="text/markdown",
author="Freya Arthen",
author_email="f.arthen@bio.uni-frankfurt.de",
url="https://github.com/BIONF/taXaminer",
packages=find_packages(),
package_data={'': ['*']},
install_requires=[
'beautifulsoup4',
'jsmin',
'PyYAML',
'biopython',
'numpy',
'pandas',
'plotly',
'requests',
'taxopy',
'scikit-learn',
'scipy',
'umap-learn',
'kaleido',
'pysam',
'tqdm',
'psutil'
],
entry_points={
'console_scripts': ["taxaminer.run = taxaminer.runTaXaminer:main",
"taxaminer.setup = taxaminer.setupTaXaminer:main",
"taxaminer.filter = taxaminer.filterTaxa:main",
"taxaminer.readgroups = taxaminer.linkGeneswReads:main",
"taxaminer.relabel = taxaminer.regroupLabels:main",
],
},
license="MIT",
classifiers=[
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
],
)