-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
41 lines (37 loc) · 986 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
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("abmap/version.py") as file:
exec(file.read())
setup(
name="abmap",
version=version,
description="AbMAP: Antibody Mutagenesis Augmented Processing",
long_description=readme,
author="Chiho Im, Taylor Sorenson, Abhinav Gupta, Rohit Singh",
author_email="[email protected]",
# url="http://dscript.csail.mit.edu",
packages=find_packages(),
entry_points={
"console_scripts": [
"abmap = abmap.__main__:main",
],
},
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"pandas",
"torch>=1.11",
"biopython",
"matplotlib",
"seaborn",
"tqdm",
"scikit-learn",
"h5py",
"transformers",
"positional_encodings",
"dscript"
],
)