forked from lewis-chinery/Humatch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (30 loc) · 1.11 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
setup(
name='Humatch',
version='1.0.1',
description='Fast, gene-specific joint humanisation of antibody heavy and light chains.',
license='BSD 3-clause license',
maintainer='Lewis Chinery',
long_description_content_type='text/markdown',
maintainer_email='[email protected]',
include_package_data=True,
package_data={'': ['trained_models/*', 'germline_likeness_lookup_arrays/*', 'configs/*']},
packages=find_packages(include=('Humatch', 'Humatch.*')),
entry_points={'console_scripts': [
'Humatch-align=Humatch.align:command_line_interface',
'Humatch-classify=Humatch.classify:command_line_interface',
'Humatch-humanise=Humatch.humanise:command_line_interface',
]},
install_requires=[
'numpy>=1.26.4',
'pandas>=2.2.3',
'ipykernel>=6.29.5',
'tensorflow>=2.17.0',
'scikit-learn>=1.5.2',
'seaborn',
'matplotlib',
'pyyaml>=6.0.2',
'biopython>=1.84', # for anarci numbering
'hmmer==3.4.0.0', # for anarci numbering
],
)