forked from brennanaba/ImmuneBuilder
-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
29 lines (27 loc) · 1015 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='ImmuneBuilder',
version='1.2',
description='Set of functions to predict the structure of immune receptor proteins',
license='BSD 3-clause license',
maintainer='Brennan Abanades',
long_description=long_description,
long_description_content_type='text/markdown',
maintainer_email='[email protected]',
include_package_data=True,
packages=find_packages(include=('ImmuneBuilder', 'ImmuneBuilder.*')),
entry_points={'console_scripts': [
'ABodyBuilder2=ImmuneBuilder.ABodyBuilder2:command_line_interface',
'TCRBuilder2=ImmuneBuilder.TCRBuilder2:command_line_interface',
'NanoBodyBuilder2=ImmuneBuilder.NanoBodyBuilder2:command_line_interface',
]},
install_requires=[
'numpy',
'scipy>=1.6',
'einops>=0.3',
'torch>=1.8',
'requests'
],
)