-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.04 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.04 KB
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
import setuptools
setuptools.setup(
name="microbELP",
version="0.2.0",
author="Dhylan Patel, Antoine D. Lain, Avish Vijayaraghavan, Joram M. Posma",
author_email="adlain@ic.ac.uk, j.posma11@imperial.ac.uk",
description="This projects is to build a pipeline for Microbiome NER and NEN.",
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: WINDOWS/LINUX/MACOS",
],
install_requires=[
"PySimpleGUI",
"alive-progress",
"Pillow>=10.0.0",
"ete3>=3.1.3",
"six>=1.16.0",
"PyQt5>=5.15.0",
"numpy>=1.25.0",
"pandas>=2.2.0",
"matplotlib>=3.8.0",
"scipy>=1.11.0",
"statsmodels>=0.14.0",
"tqdm",
"scikit-learn>=1.5.0",
"torch>=2.1.0",
"transformers>=4.40.0",
"chardet",
"bs4",
"lxml",
"nltk",
"fuzzywuzzy",
"python-Levenshtein"
],
python_requires='>=3.9'
)