-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (28 loc) · 948 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
30
31
32
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='ablang2',
version='0.2.1',
license='BSD 3-clause license',
description='AbLang2: An antibody-specific language model focusing on NGL prediction.',
long_description=long_description,
long_description_content_type='text/markdown',
author="Tobias Hegelund Olsen",
maintainer='Tobias Hegelund Olsen',
maintainer_email='tobiasheol@gmail.com',
url="",
include_package_data=True,
packages=find_packages(include=('ablang2', 'ablang2.*')),
install_requires=[
'torch>1.9',
'requests',
'einops',
'rotary-embedding-torch',
'numpy',
],
)