-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 735 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 735 Bytes
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
from setuptools import setup, find_packages
import os
setup(
name="HLA-PEPCLUST",
version="0.1.0-dev",
author="Sanjay Krishna",
author_email="sanjay.sondekoppagopalakrishna@mail.com",
packages=find_packages(),
long_description=open("README.md").read(),
install_requires=[
"rich==13.9.4",
"click==8.1.8",
"pandas==2.2.3",
"seaborn==0.13.2",
"matplotlib==3.9.4",
"rich-argparse==1.7.0",
"opencv-python",
"altair==5.5.0",
"vl-convert-python==1.7.0",
"ipykernel"
],
entry_points={
"console_scripts": [
"clust-search=cli.main:main",
],
},
)
data_path = os.getenv('GLODBA_DATA_PATH', 'data/')