forked from lewis-chinery/Tz_her2_affinity_and_beyond
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 722 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 722 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
from setuptools import setup, find_packages
setup(
name='Tz_her2_affinity_and_beyond',
version='1.0.0',
description='Design and optimisation of high affinity antibody libraries',
license='BSD 3-clause license',
maintainer='Lewis Chinery',
long_description_content_type='text/markdown',
maintainer_email='lewis.chinery@dtc.ox.ac.uk',
packages=find_packages(include=('src', 'src.*')),
install_requires=[
'blosum',
'numpy',
'pandas',
'logomaker',
'ablang',
'fair-esm',
'ipykernel',
'tensorflow',
'scikit-learn',
'seaborn',
'flaml==2.1.1',
'xgboost==1.7.6',
'lightgbm==4.2.0',
],
)